1
在數據庫表中有一個名爲♥-You-Got-Me-♥[www.savevid.com].mp4
的文件。我需要獲取這個文件的名稱並將其保存在文本文件中。但我節省的方式,我看到?
,而不是♥
。如何以Unicode存儲文本?從數據庫中獲取Unicode文本後,如何將Unicode文本存儲在文件中?
我做的方法是:
String name = Foo.getNameFromTheTable();
PrintWriter writer = new PrintWriter(file);
writer.println(name);
writer.close();
但這並不存儲在統一形式的文本。
我仍然得到''而不是心 –
@SuhailGupta,你有什麼更新的代碼? –
https://github.com/suhailgupta03/Samples/tree/master/encoding%20problem –