检查android资产文件夹html文件的存在
作者:互联网
我将html文件传递为“file:///android_asset/WebApplication/index.html”.如何在android中检查此文件是否存在.
解决方法:
您可以尝试打开流,如果它失败,文件就不存在,如果它没有失败,文件应该在那里:
/**
* 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;
}
标签:android-assets,android 来源: https://codeday.me/bug/20190901/1782083.html