我目前正在研究 PhoneGap 在 iPhone 应用程序开发中可以/不能做什么。到目前为止,我已经设法使用 FileWriter 将文件写入 LocalFileSystem 并单击按钮将文件读回给用户。我被要求找到一种设置应用程序的方法,因此当应用程序写入文件时,该文件将保存到用户指定的文件夹/位置。我一直在寻找,但我找不到任何与此有关的信息。甚至有可能这样做吗?如果是这样,你能帮帮我吗?
(我在这个应用程序的 Xcode 中使用 JavaScript、HTML 和 PhoneGap)
这是我用来使用 LocalFileSystem 写入/读取文件的代码;
var reader;
var text;
var myFileSystem;
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, gotFS, fail);
}
function myfile() {
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, gotmyFS, fail);
}
function gotFS(fileSystem) {
fileSystem.root.getFile("readme.txt", {create: true, exclusive: false}, gotFileEntry, fail);
myFileSystem = fileSystem;
console.log(fileSystem.name);
}
function gotmyFS(fileSystem) {
fileSystem.root.getFile("readme2.txt", {create: true, exclusive: false}, gotFileEntry, fail);
}
function gotFileEntry(fileEntry) {
fileEntry.createWriter(gotFileWriter, fail);
fileEntry.file(gotFile, fail);
}
function gotFileWriter(writer) {
writer.write("some sample text");
}
function gotFile(file){
readAsText(file);
}
function readDataUrl(file) {
reader = new FileReader();
reader.onloadend = function(evt) {
console.log("Read as data URL");
console.log(evt.target.result);
};
reader.readAsDataURL(file);
}
function readAsText(file) {
reader = new FileReader();
reader.onloadend = function(evt) {
console.log("Read as text");
console.log(evt.target.result);
console.log(file);
text = evt.target.result;
};
reader.readAsText(file);
}
function readmyfile() {
var myPara = document.getElementById("mytext");
myPara.innerText = text;
}
function fail(error) {
console.log(error.code);
}
这一切都有效,但是我应该添加/删除一些东西以使其工作吗?
提前非常感谢xx