Hallo,
um mal eins klarzustellen ich bin eher auf der PHP/CSS/HTML-Ebene und nicht JAVA
Ich fang jetzt aber an ein bisschen zu üben, denn ich werde das auf meiner nächsten Schule brauchen.
Mein vorhaben ist es den Vorgang zu verstehen.
Und zwar hole ich mir damit den Seitenquelltext (falls es kürzer geht dann bitte erklären).
Alles anzeigen
Und das wäre das GUI.
Alles anzeigen
Meine Wunschvorstellung wäre die beiden Sachen zu kombinieren.
Und zwar => Seitenquelltext soll in dem TextField angezeigt werden.
um mal eins klarzustellen ich bin eher auf der PHP/CSS/HTML-Ebene und nicht JAVA

Ich fang jetzt aber an ein bisschen zu üben, denn ich werde das auf meiner nächsten Schule brauchen.
Mein vorhaben ist es den Vorgang zu verstehen.
Und zwar hole ich mir damit den Seitenquelltext (falls es kürzer geht dann bitte erklären).
Quellcode
- //------------------------------------------------------------//
- // JavaGetUrl.java: //
- //------------------------------------------------------------//
- // A Java program that demonstrates a procedure that can be //
- // used to download the contents of a specified URL. //
- //------------------------------------------------------------//
- // Code created by Developer's Daily //
- // http://www.DevDaily.com //
- //------------------------------------------------------------//
- import java.io.*;
- import java.net.*;
- public class JavaGetUrl {
- public static void main (String[] args) {
- //-----------------------------------------------------//
- // Step 1: Start creating a few objects we'll need.
- //-----------------------------------------------------//
- URL u;
- InputStream is = null;
- DataInputStream dis;
- String s;
- try {
- //------------------------------------------------------------//
- // Step 2: Create the URL. //
- //------------------------------------------------------------//
- // Note: Put your real URL here, or better yet, read it as a //
- // command-line arg, or read it from a file. //
- //------------------------------------------------------------//
- u = new URL("http://200.210.220.1:8080/index.html");
- //----------------------------------------------//
- // Step 3: Open an input stream from the url. //
- //----------------------------------------------//
- is = u.openStream(); // throws an IOException
- //-------------------------------------------------------------//
- // Step 4: //
- //-------------------------------------------------------------//
- // Convert the InputStream to a buffered DataInputStream. //
- // Buffering the stream makes the reading faster; the //
- // readLine() method of the DataInputStream makes the reading //
- // easier. //
- //-------------------------------------------------------------//
- dis = new DataInputStream(new BufferedInputStream(is));
- //------------------------------------------------------------//
- // Step 5: //
- //------------------------------------------------------------//
- // Now just read each record of the input stream, and print //
- // it out. Note that it's assumed that this problem is run //
- // from a command-line, not from an application or applet. //
- //------------------------------------------------------------//
- while ((s = dis.readLine()) != null) {
- System.out.println(s);
- }
- } catch (MalformedURLException mue) {
- System.out.println("Ouch - a MalformedURLException happened.");
- mue.printStackTrace();
- System.exit(1);
- } catch (IOException ioe) {
- System.out.println("Oops- an IOException happened.");
- ioe.printStackTrace();
- System.exit(1);
- } finally {
- //---------------------------------//
- // Step 6: Close the InputStream //
- //---------------------------------//
- try {
- is.close();
- } catch (IOException ioe) {
- // just going to ignore this one
- }
- } // end of 'finally' clause
- } // end of main
- } // end of class definition
Und das wäre das GUI.
Quellcode
- import java.awt.*;
- import java.awt.event.*;
- public class class_test extends Frame
- {
- public class_test ()
- {
- // Fenster
- setTitle("Beispiel");
- addWindowListener(new TestWindowListener());
- setLayout(new BorderLayout()); // BorderLayout setzen
- setSize(300,150);
- setVisible(true);
- // Fenster
- // Elemente
- add(new TextField("Blubb"));
- // Elemente
- }
- class TestWindowListener extends WindowAdapter
- {
- public void windowClosing(WindowEvent e)
- {
- e.getWindow().dispose();
- System.exit(0);
- }
- }
- public static void main (String args[])
- {
- new class_test ();
- }
- }
Meine Wunschvorstellung wäre die beiden Sachen zu kombinieren.
Und zwar => Seitenquelltext soll in dem TextField angezeigt werden.