我正在使用此代码将数据保存在文件中。文件中保存的数据为????????
。请帮助我找到合适的解决方案。
File gpxfile = new File(activate, "activate.csv");
OutputStreamWriter writer = new OutputStreamWriter(new FileOutputStream(gpxfile),"UTF-8");
writer.write(merchantId);
答案 0 :(得分:0)
它对我有用。确保merchantId
包含有效的Hindi
。例如:
String str = "मानक हिन्दी";
writer.write(str);