Java字符串在数据库中保存为unicode

时间:2013-10-12 16:11:08

标签: java unicode

我想将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

1 个答案:

答案 0 :(得分:1)

在该链接上有关于如何在mysql数据库上保存unicode的信息

How to store unicode in MySQL?

java能够管理多个编码,并且没有解释unicode的问题。

更多信息:

http://docs.oracle.com/javase/tutorial/i18n/text/string.html

我希望这对你有用。