将字符串转换为 unicode 字
我有一个包含 unicode 单词 的字符串。例如:
String uniString = "that is an example \u05e9\u05dc\u05d5\u05dd the end.";
所以我向您提出的问题是,如何将此字符串转换为将 unicode 单词转换为单个字符的字符串。
注意:我是从服务器请求中获取它的。
谢谢一个头。
I have a string that contains unicode words. for example:
String uniString = "that is an example \u05e9\u05dc\u05d5\u05dd the end.";
So my question to you is, how can I convert this string into a string where the unicode words are converted into a singal character.
Note: I am getting it from a server request.
Thanks a head.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
native2ascii
是您正在寻找的:http://docs.oracle.com/javase/1.4.2/docs/tooldocs/windows/native2ascii.html
只需执行此操作即可将 Unicode 转义转换为您的源文件:
native2ascii
is what you are looking for:http://docs.oracle.com/javase/1.4.2/docs/tooldocs/windows/native2ascii.html
Just do this to convert the Unicode escapes in your source file: