0
我的Android應用程序有點問題。Android應用程序生成
當按下「導出按鈕」時,我的應用程序會生成一個.html文件。
但我無法在我的電腦或Android的下載應用程序中看到該文件。我只能在Astro文件管理器中看到它。
這就是我如何生成並保存我的文件。
String string = "Hello World"
String filename = "/sdcard/Download/teste.html";
FileOutputStream outputStream;
try {
File file = new File(filename);
boolean newFile = file.createNewFile();
if(!newFile){ //if the file exists I delete it and generate a new file
file.delete();
newFile=file.createNewFile();
}
Context context=getActivity();
FileOutputStream fOut = new FileOutputStream(file,true);
// Write the string to the file
fOut.write(string.getBytes());
/* ensure that everything is
* really written out and close */
fOut.flush();
fOut.close();
}
catch (Exception e) {
e.printStackTrace();
}
我假設有一種可視化沒有天文應用此文件,但我無法找到如何做到這一點,如果有人可以幫助我將不勝感激。 謝謝
閱讀您的博客我可以讓我的應用程序顯示該文件,謝謝。 –