Java和日文字符

我在我的应用程序和JSON中使用Struts.当我尝试提交日语字符时,在我的控制器类中,我得到一个这样的字符串:

&#12373 ; &#12383 ; &#12399 ; &#12414 ; &#12419 ; &#12425 ;  (without spaces)

我应该把它转换成日文字符,但我找不到怎么做!

请有人帮帮我吗?

解决方法:

这是unicode的XML编码.使用Apache Commons library来取消它:

import org.apache.commons.lang.StringEscapeUtils;

String input = "さ た は ま ゃ ら";
String plain = StringEscapeUtils.unescapeXml(input);
System.out.println(plain); // Will print your characters
上一篇:c# – 用JavaScript替换中文字符


下一篇:java – 未在JSP上呈现的中文字符