我想将java字符串存储为数据库中的unicode字符串。如果可能,请告诉我?
例如:
String columnValue="Sample \u0020\u0061\u0074\u0020\u0032\u0032\u0042\u0020 text";
我想将上面的内容(因为它是粗体)完全保存到数据库中并进行检索。
DB列应存储为:
ColumnA
---------
Sample \u0020\u0061\u0074\u0020\u0032\u0032\u0042\u0020 text ( with unicode string value)
从java中读回来时,它应该显示:
Sample at 22B text
答案 0 :(得分:1)
在该链接上有关于如何在mysql数据库上保存unicode的信息
How to store unicode in MySQL?
java能够管理多个编码,并且没有解释unicode的问题。
更多信息:
http://docs.oracle.com/javase/tutorial/i18n/text/string.html
我希望这对你有用。