※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
import java.io.*;
import java.net.*;
public class Sample {
public static void main(String[] args) {
URL url = null;
BufferedInputStream in = null;
HttpURLConnection con = null;
try {
url = new URL("http://www.android.com/");
con = (HttpURLConnection)
url.openConnection();
in = new BufferedInputStream
(con.getInputStream());
byte[] data = new byte[1024];
in.read(data);
String res = new String(data);
System.out.println(res);
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
in.close();
} catch (IOException e) {
e.printStackTrace();
}
con.disconnect();
}
}
}
| << 前へ | 次へ >> |