I'm trying to load an html page from a server the page contains a script that links to android sdcard .js file.
Java:
String url ="http://192.168.84.86:8080/test/maw/js_load_test.html";
this.loadUrl(url);
js_load_test.html:
<script src="file:///sdcard/test.js"></script>
I've also tried :
<script src="file:///android_asset/www/js/test.js"></script>
test.js file exists and js file path is correct.
But in logcat:
file:///sdcard/test.js:
03-18 13:01:12.467: E/Web Console(26189): Not allowed to load local
resource: file:///sdcard/test.js at :0
file:///android_asset/www/js/test.js:
03-18 13:01:53.467: E/Web Console(26189): Not allowed to load local
resource: file:///android_asset/www/js/test.js at :0
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…