public class url {
public static void main(String[] args) throws Exception {
URL imdb = new URL("http://www.omdbapi.com/?t=The%20incredible%20Hulk");
URLConnection yc = imdb.openConnection();
BufferedReader in = new BufferedReader(new InputStreamReader(
yc.getInputStream()));
String inputLine;
while ((inputLine = in.readLine()) != null)
System.out.println(inputLine);
String[] strarr = inputLine.split(",");
System.out.println("splits.size: " + strarr.length);
in.close();
}
}
的錯誤是: 「異常線程 」main「 在imdb.url.main顯示java.lang.NullPointerException (url.java:25)」的Java斯普利特()函數給空指針異常錯誤
請向我解釋我如何刪除它。我使用分裂函數和空指針異常google了很多,但只是不明白我做錯了什麼。
由'null.split(..)'工作造成的。 – 2013-03-30 21:23:15
實際上,該URL指向一個JSON文檔,因此您可能想使用JSON解析器而不是這樣做。 – thejh