我有一个文件,其字符串手工输入为\ u00C3。我想创建一个由java中的unicode表示的unicode字符。我试过但找不到怎么样。帮助
编辑:当我读取文本文件时,字符串将包含“\ u00C3”而不是unicode,而是包含ASCII字符'\''u''0''0''3'。我想从那个ASCII字符串中形成unicode字符。
答案 0 :(得分:7)
我在网上的某个地方选择了这个:
String unescape(String s) {
int i=0, len=s.length();
char c;
StringBuffer sb = new StringBuffer(len);
while (i < len) {
c = s.charAt(i++);
if (c == '\\') {
if (i < len) {
c = s.charAt(i++);
if (c == 'u') {
// TODO: check that 4 more chars exist and are all hex digits
c = (char) Integer.parseInt(s.substring(i, i+4), 16);
i += 4;
} // add other cases here as desired...
}
} // fall through: \ escapes itself, quotes any character but u
sb.append(c);
}
return sb.toString();
}
答案 1 :(得分:3)
package ravi;
import java.io.BufferedReader;
import java.io.FileReader;
import java.util.regex.Pattern;
public class Ravi {
private static final Pattern UCODE_PATTERN = Pattern.compile("\\\\u[0-9a-fA-F]{4}");
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new FileReader("ravi.txt"));
while (true) {
String line = br.readLine();
if (line == null) break;
if (!UCODE_PATTERN.matcher(line).matches()) {
System.err.println("Bad input: " + line);
} else {
String hex = line.substring(2,6);
int number = Integer.parseInt(hex, 16);
System.out.println(hex + " -> " + ((char) number));
}
}
}
}
答案 2 :(得分:0)
可能有些事情:
Scanner s = new Scanner( new File("myNumbers") );
while( s.hasNextLine() ) {
System.out.println(
Character.valueOf(
(char)(int) Integer.valueOf(
s.nextLine().substring(2,6), 16
)
)
);
答案 3 :(得分:0)
StringEscapeUtils.unescapeJava正常工作:)
答案 4 :(得分:0)
如果您只想以编程方式转义unicode而不想转义其他内容,则可以创建一个函数:
private String unicodeUnescape(String string) {
return new UnicodeUnescaper().translate(string);
}
这使用org.apache.commons.text.translate.UnicodeUnescaper。