java.net.MalformedURLException:未知协议:android - Android

时间:2018-03-08 14:25:14

标签: android

我收到此消息错误:

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);
        }

我不知道我的错在哪里。

0 个答案:

没有答案