Anzeige:
Ergebnis 1 bis 4 von 4

Thema: Html-File downloaden

  1. #1
    suso
    Gast

    Html-File downloaden

    Hey !
    hab'n problem .. vlt. könnt ihr mir helfen ..
    ich will'n html- file von ner url - lesen und dann in ein .html- file speichern - der test-code bis jetz :

    Code:
     public void downloadSingle(String url){
            try{
                //erzeugt neues URL - objekt
                URL u = new URL(url);
                
                //file auf das geschrieben werden soll..
                File f = new File("test.html");
                
                //gibt verschiedene informationen über url aus:
                gatherStuffAboutURLAndPrintItOut(u);
                
                //öffnet stream
                InputStream is = u.openStream();
                
                // od. connection öffnen ??
                URLConnection uc = u.openConnection();
                
                //wie geht's weiter ??
                
            }catch(Exception e){
                e.printStackTrace(System.err);
            }
            
        }
    büdde um hilfe, thx suso
    (aja: es sollten keine externen api's wie die apache commons net od. so verwendet werden ... )

  2. #2
    Registrierter Benutzer Avatar von bischi
    Registriert seit
    10.04.2003
    Beiträge
    4.828
    www.javabuch.de --> 45.2.4 Zugriff auf einen Web-Server

    MfG Bischi

    "There is an art, it says, or rather, a knack to flying. The knack lies in learning how to throw yourself at the ground and miss it" The hitchhiker's guide to the galaxy by Douglas Adams

    --> l2picfaq.pdf <-- www.n.ethz.ch/~dominikb/index.html LaTeX-Tutorial, LaTeX-Links, Java-Links,...

  3. #3
    suso
    Gast
    thx - normalerweiße bin ich bei gallileo-computing daheim

  4. #4
    Registrierter Benutzer Avatar von bischi
    Registriert seit
    10.04.2003
    Beiträge
    4.828
    Galileo mag ich dafür nicht besonders - mir ist das ganze viel zu unübersichtlich...

    MfG Bischi

    "There is an art, it says, or rather, a knack to flying. The knack lies in learning how to throw yourself at the ground and miss it" The hitchhiker's guide to the galaxy by Douglas Adams

    --> l2picfaq.pdf <-- www.n.ethz.ch/~dominikb/index.html LaTeX-Tutorial, LaTeX-Links, Java-Links,...

Lesezeichen

Berechtigungen

  • Neue Themen erstellen: Nein
  • Themen beantworten: Nein
  • Anhänge hochladen: Nein
  • Beiträge bearbeiten: Nein
  •