检查android资产文件夹html文件的存在

Kar*_*ick 3 android android-assets

我将html文件传递为"file:///android_asset/WebApplication/index.html".如何在android中检查此文件是否存在.

GrI*_*sHu 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;
}
Run Code Online (Sandbox Code Playgroud)