Guest User

Untitled

a guest
Jan 22nd, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.23 KB | None | 0 0
  1.     URL myURL = new URL("");
  2.     URLConnection myURLConnection = myURL.openConnection();
  3.     myURLConnection.connect();
  4. } catch (MalformedURLException e) {     // new URL() failed
  5. } catch (IOException e) {               // openConnection() failed
  6. }
Add Comment
Please, Sign In to add comment