将中文转换成Unicode码

java做的一个将中文转换成Unicode码的工具类分类:java技术
1.工具代码如下:
package ben;

import java.io.IOException;
import java.io.InputStreamReader;
import java.io.UnsupportedEncodingException;

public class Native2Ascii {
static String java_bin_path = "D:\\jdk1.4.2_03\\bin";
// 存放中文的文本文件
static String source_file = "C:\\a.txt";

public static void main(String[] args) {
String result = getUnicodeString(source_file);
System.out.println(result);
}

private static String getUnicodeString(String destFileName) {
StringBuffer tempSb = new StringBuffer();
try {
Process p = Runtime.getRuntime().exec(java_bin_path+ "\\native2ascii.exe " + destFileName);
InputStreamReader child_in = new InputStreamReader(p.getInputStream());
int c;
while ((c = child_in.read()) != -1) {
tempSb.append((char)c);
}
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
} catch (IOException ex) {
ex.printStackTrace();
}

return tempSb.toString();
}
}

其中,两个变量需要修改一下。
a1.“java_bin_path”:jdk的bin目录;
a2.“source_file”:要转换的中文所在的文本文件。
2.a.txt文本文件
中文测试
中文

3.输出结果
\u4e2d\u6587\u6d4b\u8bd5
\u4e2d\u6587

 


原文链接: http://www.dlog.cn/nicholascoder/diary/6576

你可能感兴趣的:(将中文转换成Unicode码)