Guest User

Untitled

a guest
Jan 22nd, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. {
  2.  
  3. public static void main(String[] args) throws Exception
  4. {
  5. System.out.println("Hello, World.");
  6. //testing
  7. System.setProperty("java.net.useSystemProxies", "true");
  8. System.setProperty("http.proxyHost", "127.0.0.1");
  9. System.setProperty("http.proxyPort", "8080");
  10. //testing
  11. Desktop d = Desktop.getDesktop();
  12. d.browse(new URI("https://www.youtube.com/watch?v=PStnmmEzA44"));
  13. System.out.println("end of program");
  14.  
  15. }
  16. }
Add Comment
Please, Sign In to add comment