Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图将本地文件从 sdcard 加载到 WebView 中。但自从 Android 4.1 之后它不再工作了,我总是收到消息:找不到文件并且在 LogCat 中
Unknown chromium error: -6.
我发现了问题,我只需要再添加一个斜线。例子:
我们现在需要:
loadURL("file:///.../file.file");
代替:
loadURL("file://.../file.file");
只需再添加一个斜线即可。我希望这对所有在 Android 4.1 下遇到相同问题的人有所帮助。