我们正在开发Phonegap
app.We需要将SqLite
Db数据放入SDCard
。我们将sqLite
数据转换为JSON
String.now我们发送到SDCard
。使用此链接File API in PhoneGap
我们将这个json数据编码到SDCard中
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
//alert("seeeeee1");
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, gotFS, fail);
}
function gotFS(fileSystem) {
alert("seeeeee2");
fileSystem.root.getFile("forTEST.csv", {create: true, exclusive: false}, gotFileEntry, fail);
}
function gotFileEntry(fileEntry) {
alert("seeeeee3");
fileEntry.createWriter(gotFileWriter, fail);
}
function gotFileWriter(writer) {
alert("set");
writer.onwriteend = function(evt) {
};
writer.write(JSONData);
}
但是当我们在我的mobile.it的CSV
格式中打开它的JSON
文件时
[
{
"items": "BODYLINESUPER",
"descriptions": "100mg",
"umo": "CTN",
"qty": 7,
"price": 1093.55,
"lineamount": 7654.85,
"customerid": "ARU007",
"tdate": "2015-4-7",
"orderId": "Himansu15",
}
]
但我们需要CSV
file.like
items descriptions umo qty price lineamount customerid tdate orderId
BODYLINESUPER 100mg CTN 7 1093.55 7654.85 ARU007 2015-4-7 Himansu15
此行数据发送到CSV文件
writer.write(JSONData);
请指导我。
答案 0 :(得分:1)
5将所有数组列表数据写入csv文件。