次の接続を使用しようとしました
URL oracle = new URL("http://www.oracle.com/");
URLConnection yc = oracle.openConnection();
yc.setConnectTimeout(100000);
BufferedReader in = new BufferedReader(new InputStreamReader(
yc.getInputStream()));
String inputLine;
while ((inputLine = in.readLine()) != null)
System.out.println(inputLine);
in.close();
投げるjava.net.UnknownHostException
mapping
にセットできませんsystem32\drivers\etc\hosts
。そして、私はそこに変更を加えることができません。これを克服する方法はありますか?他のコンピューターでは機能しますが、使用したいコンピューターでは機能しません
使ってみた
searchUrl="http://96.7.228.140/";
そして、次のエラーが発生しました
java.net.ConnectException: Connection timed out: connect