Android java.net.MalformedURLException: no protocol: 解決方式
今天在做模擬請求的時候發現錯誤:
Java.NET.MalformedURLException: no protocol: 畸形的URL異常 :沒有協議
方法如下:
public static InputStream getInputStreamFromUrl(String urlstr){
try {
System.out.println("urlstr:"+urlstr);
urlstr="192.168.1.173:8080/Api/petinfo/petinfo?flag=adopt&json=[{\"pettype\":\"100\",\"petname\":\"ll\"}]";
InputStream is = null;
HttpURLConnection conn = null;
URL url = new URL(urlstr);
conn = (HttpURLConnection) url.openConnection();
if (conn.getResponseCode() == 200) {
is = conn.getInputStream();
return is;
}
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
方法是沒錯的,但是最後竟然報出瞭如上的異常,很詫異。。
最後經過多次試驗,終於找到了原因。
因為我這裡強轉了,把URLConnection轉換成了HttpURLConnection,
而HttpURLConection傳入的網址是需要協議的,https:// 或http://之類的協議云云。
所以url前面應該新增“http:\\192.168.1.173:8080/Api/petinfo/petinfo?flag=adopt&json=[{\"pettype\":\"100\",\"petname\":\"ll\"}]";”;
這樣就不會出錯了,或者HttpURLConnection改成URConnectionL (未嘗試)