z****n 发帖数: 79 | 1 有什么程序可以把中文转换成unicode ?比如 输入"我们", 它就输出 \u6211\u4eec
我主要写网络程序,需要这个转换。
圣诞快乐。 |
k***r 发帖数: 4260 | 2 在你自己程序里转换最容易了吧。
u4eec
【在 z****n 的大作中提到】 : 有什么程序可以把中文转换成unicode ?比如 输入"我们", 它就输出 \u6211\u4eec : 我主要写网络程序,需要这个转换。 : 圣诞快乐。
|
i***c 发帖数: 301 | |
g*****g 发帖数: 34805 | 4 java有个现成的工具干这个。
【在 i***c 的大作中提到】 : c#,java三行搞定
|
z****n 发帖数: 79 | 5 什么工具?要怎么转换?
多谢。
【在 g*****g 的大作中提到】 : java有个现成的工具干这个。
|
n******t 发帖数: 4406 | 6 如果Linux,UNix下面的话,用iconv就很方便了.
u4eec
【在 z****n 的大作中提到】 : 有什么程序可以把中文转换成unicode ?比如 输入"我们", 它就输出 \u6211\u4eec : 我主要写网络程序,需要这个转换。 : 圣诞快乐。
|
g*****g 发帖数: 34805 | 7 There's a native2ascii.exe in JDK, you can google that.
【在 z****n 的大作中提到】 : 什么工具?要怎么转换? : 多谢。
|
z****n 发帖数: 79 | 8 用 resource bundle editor, eclipse plugin 很方便。简直是功德无量。。。
【在 g*****g 的大作中提到】 : There's a native2ascii.exe in JDK, you can google that.
|
y*****a 发帖数: 171 | 9 I use microsoft word 2007(not sure about 2003), open the text, choose to
save as "utf-8". do not use wordpad. |
c******n 发帖数: 4965 | 10 String class:
public int codePointAt(int index)
why is this thread growing to such a long one?
even a newbie like me know how to find the answer: JavaDOC!
u4eec
【在 z****n 的大作中提到】 : 有什么程序可以把中文转换成unicode ?比如 输入"我们", 它就输出 \u6211\u4eec : 我主要写网络程序,需要这个转换。 : 圣诞快乐。
|