2
我想將res/raw文件夾中的xml文件複製到SD卡上。這個問題實際上是針對ODK Collect的。但任何幫助,將不勝感激。我在網上看過Android: How to create a directory on the SD Card and copy files from /res/raw to it?和其他類似的帖子,但我仍然無法複製。也許,因爲我正在ODK Collect工作。 這是我的代碼複製文件:如何將res/raw文件夾中的xml文件複製到android的sd卡?
try {
InputStream in = getResources().openRawResource(R.raw.problem2);
OutputStream out = new FileOutputStream(Collect.FORMS_PATH+"/problem2");
// Transfer bytes from in to out
byte[] buf = new byte[1024];
int len;
while ((len = in.read(buf)) > 0) {
out.write(buf, 0, len);
}
in.close();
out.close();
}
catch(IOException e) { }
在此先感謝。
ODK收集...? – Mudassir
是的,它是一個xforms軟件,等等...... – Kartikey
Collect.FORMS_PATH的值是什麼? –