assetsフォルダーから同じファイル「 xmlfile.xml 」を読み込もうとしています。また、SD カードsdcard/download/から別のコピーを読み込もうとしています。
SDカードから読み取ることができます:
- unfile Trueを返す
- Esite Return True
Assets フォルダーから読み取ることができません:
- unfile Falseを返す
- Esite リターンFalse
このコードは機能していません
File source = new File("file:///android_asset/xmlfile.xml");
boolean unfile = source.isFile();
boolean Esiste = source.exists();
try
{
// todo
} catch (Exception e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
このコードは動作しています
File source = new File("/sdcard/" + "download" + "/" + "xmlfile.xml");
boolean unfile = source.isFile();
boolean Esiste = source.exists();
try
{
// todo
} catch (Exception e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
Assets フォルダーからファイルを読み取る方法を誰かが説明してくれます。
ありがとうマルコ