admin 管理员组

文章数量: 1086019

I am looking for an elegant way to access local files (either on phone memory or SD Card) on an Android device from JavaScript running in WebView on an Android device.

I am loading said WebView with a html page from the device located in the assets folder. Along these lines, I believe I can access any file in this assets folder from the Javascript, but can't load anything from SD card or phone memory. I am aware of the addJavaScriptInterface, but I am specifically trying to load images, so using this method would require some tweaking to pass a B64 encoded image.

I am new to Android development, and want to make sure I am not missing something obvious.

I am looking for an elegant way to access local files (either on phone memory or SD Card) on an Android device from JavaScript running in WebView on an Android device.

I am loading said WebView with a html page from the device located in the assets folder. Along these lines, I believe I can access any file in this assets folder from the Javascript, but can't load anything from SD card or phone memory. I am aware of the addJavaScriptInterface, but I am specifically trying to load images, so using this method would require some tweaking to pass a B64 encoded image.

I am new to Android development, and want to make sure I am not missing something obvious.

Share Improve this question asked Nov 26, 2010 at 13:43 user163757user163757 7,0259 gold badges33 silver badges48 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 3

You need to implement a ContentProvider to map local files to uris.

Android tip #1 ContentProvider , Accessing local file system from WebView / showing image in webview using content://

本文标签: Android Access Local File From WebView JavascriptStack Overflow