我正在通過XDK intel開發移動應用程序,如何從應用程序外部讀取文本文件?用Javascript讀取文本文件?
我試過這段代碼,但它不工作!
function readFile (filepath){
var txtFile = "C:\test.txt";
var file = new File(txtFile);
file.open("r"); // open file with read access
var str = "";
while (!file.eof) {
\t // read each line of text
\t str += file.readln() + "\n";
}
file.close();
alert(str);
}
您有權限檢查XDK intel,大多數的移動操作系統dost允許從內存中讀取文件,因爲安全原因。 – nisar
我已經檢查了權限,但仍然沒有讀取 –
我沒有SDK intel,因爲當我在windows phone項目中工作時,他們不允許爲了某種安全目的而允許內部手機內存。請閱讀所有文件並嘗試。我們浪費一週時間。 – nisar