我一直在研究一些 Java 代码,其中将字符串转换为 URL,然后用于下载和输出其对应的 URL。不幸的是,当我运行该程序时,它就挂断了。有人有什么建议吗?
注意:我使用了 import java.io.* 和 import java.net.*
public static boolean htmlOutput(String testURL) throws Exception {
URL myPage2 = new URL(testURL); //converting String to URL
System.out.println(myPage2);
BufferedReader webInput2 = new BufferedReader(
new InputStreamReader(myPage2.openStream()));
String individualLine=null;
String completeInput=null;
while ((individualLine = webInput2.readLine()) != null) {
//System.out.println(inputLine);
System.out.println(individualLine);
completeInput=completeInput+individualLine;
}//end while
webInput2.close();
return true;
}//end htmlOutput()