我的代码很简单:
webView.getEngine().load("classpath:data/index.html");
自定义URLStreamHandler:
public class Handler extends URLStreamHandler {
private final ClassLoader classLoader;
public Handler() {
this.classLoader = getClass().getClassLoader();
}
public Handler(ClassLoader classLoader) {
this.classLoader = classLoader;
}
@Override
protected URLConnection openConnection(URL u) throws IOException {
URL resourceUrl = classLoader.getResource(u.getPath());
if(resourceUrl == null)
throw new IOException("Resource not found: " + u);
return resourceUrl.openConnection();
}
}
安装者:
URL.setURLStreamHandlerFactory(protocol -> {
if(protocol.equals("classpath")) {
return new Handler();
} else {
return null;
}
});
它加载data / index.html:
<!DOCTYPE html>
<html>
<head>
<title>Test</title>
</head>
<body>
<div>Hello, World!!!</div>
<img src="download.jpg">
</body>
</html>
但结果图片未显示。
如何让WebView解析像“download.jpg”这样的相对链接?
答案 0 :(得分:5)
我瘦了我找到了解决方案:
在Handler.openConnection(URL u)
我们必须添加
String path = getURL().getPath().startsWith("/") ? getURL().getPath().substring(1) : getURL().getPath();
URL resourceUrl = classLoader.getResource(path);
而不是
URL resourceUrl = classLoader.getResource(u.getPath());
和标准化网址,而不是
webView.getEngine().load("classpath:data/index.html");
使用
webView.getEngine().load("classpath:///data/index.html");