我将 html 文件作为“file:///android_asset/WebApplication/index.html”传递。如何在 android.xml 中检查此文件是否存在。
问问题
4644 次
2 回答
5
您可以尝试打开流,如果失败,则文件不存在,如果不失败,则文件应该在那里:
/**
* Check if an asset exists. This will fail if the asset has a size < 1 byte.
* @param context
* @param path
* @return TRUE if the asset exists and FALSE otherwise
*/
public static boolean assetExists(Context context, String path) {
boolean bAssetOk = false;
try {
InputStream stream = context.getAssets().open(ASSET_BASE_PATH + path);
stream.close();
bAssetOk = true;
} catch (FileNotFoundException e) {
Log.w("IOUtilities", "assetExists failed: "+e.toString());
} catch (IOException e) {
Log.w("IOUtilities", "assetExists failed: "+e.toString());
}
return bAssetOk;
}
于 2013-02-02T09:25:58.747 回答
0
File f=new File("file:///android_asset/");
File[] files=f.listFiles();
如果文件返回 null den,您就知道文件夹是空的。
于 2013-02-02T09:29:01.273 回答