Skip to content

Instantly share code, notes, and snippets.

@zqfan
Created December 10, 2017 11:40
Show Gist options
  • Save zqfan/3f8008b19180b6c4c66dfdbd3cfca48e to your computer and use it in GitHub Desktop.
Save zqfan/3f8008b19180b6c4c66dfdbd3cfca48e to your computer and use it in GitHub Desktop.
import java.net.URL;
import java.io.InputStream;
public class Test {
public static void main(String args[]) throws Exception {
URL url = new URL("https://www.baidu.com");
InputStream in =url.openStream();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment