HTMLファイルを「file:///android_asset/WebApplication/index.html」として渡しています。Androidでこのファイルの存在を確認するにはどうすればよいですか。
質問する
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 に答える