Update main.java
This commit is contained in:
parent
18d37277b9
commit
e19d96a762
@ -1,9 +1,10 @@
|
|||||||
public class Main {
|
public class Main {
|
||||||
|
|
||||||
public static main(String[] args) {
|
public static main(String[] args) throws Exception {
|
||||||
URL url = new URL("http://joinis.is");
|
URL url = new URL("http://joinis.is");
|
||||||
String response = new BufferedReader(new InputStreamReader(url.openStream())).readLine();
|
URLConnection urlConnection = url.openConnection();
|
||||||
System.out.println(response);
|
urlConnection.connect();
|
||||||
|
System.out.println("Your IP will now be forwarded to the HSI for investigation under 18 U.S. Code § 2339B");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user