/* ** Objektorienteeritud programmeerimine - triviaalsed näited URL-dega. ** ** NB! Tegemist on õppeotstarbelise näitega, mis ei ole ** mõeldud reaalses elus kasutamiseks. ** ** @author Gunnar Kudrjavets [gk@aprote.ee] ** @version 0.1, 13.04.1999 ** @since JDK 1.0 */ import java.io.*; import java.net.*; class SimpleURL { public static void main(String[] args) { try { URL url = new URL("http://www.aprote.ee/~gk/index.html"); URL sameURL = new URL("http", "www.aprote.ee", "~gk/index.html"); // Genereerib 'MalformedURLException'-i // URL badURL = new URL("gkkp://www.aprote.ee/"); DataInputStream dis = new DataInputStream(url.openStream()); // loeme esimese rea String strLine = dis.readLine(); System.out.println(strLine); } catch (MalformedURLException e) { System.out.println(e); } catch (IOException e) { System.out.println("I/O error: " + e); } } }