Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试使用 PhoneGap FileWriter 编写 *.csv 文件。它工作正常,输出以 UTF-8 格式正确。问题是一些像 Excel 这样的阅读器期望 BOM(字节顺序标记)来检测 UTF-8。
如何在文件开头添加此 BOM?
我从
writer.write("\uFEFF");
它记录在这里: http: //www.ecma-international.org/ecma-262/5.1/
有用!
刚开始你的输出
writer.write("\xEF\xBB\xBF");
在附加 csv 内容之前。