Guest
Public paste!

caiobm

By: a guest | Jan 23rd, 2009 | Syntax: Java | Size: 0.23 KB | Hits: 43 | Expires: Never
Copy text to clipboard
  1. class TesteHttp {
  2.        
  3.         public static void main(String[] args) throws Exception {
  4.                 String url = "http://www.orkut.com";
  5.                    
  6.                 Runtime.getRuntime().exec("rundll32 url.dll,FileProtocolHandler " + url);  
  7.                
  8.                 System.exit(1);
  9.         }
  10. }