我收到此消息错误:
java.net.MalformedURLException: Unknown protocol: android
我的剪辑代码:
final URL url;
try {
if (parent.getParamFile() != null) {
url = parent.getParamFile().toURI().toURL();
} else {
url = new URL("android://com.****/assets/" + parent.getParamAssetDir() + File.separator + parent.getParamAssetFilename());
}
} catch (MalformedURLException e) {
Log.e("SceneLoader", e.getMessage(), e);
throw new RuntimeException(e);
}
我不知道我的错在哪里。