Results 1 to 4 of 4

Thread: Connect to another website using Java Applet

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Mar 2007
    Posts
    111

    Connect to another website using Java Applet

    Hello all,

    Would someone please tell me how can i connect to a website using Java Applet and read the output stream from that site.

    Thanks in advance.

  2. #2
    Arabic Poster ComputerJy's Avatar
    Join Date
    Nov 2005
    Location
    Happily misplaced
    Posts
    2,513

    Re: Connect to another website using Java Applet

    You can read the Java Socket tutorial
    "I'm not normally a praying man, but if you're up there, save me... Superman!" - Homer Simpson
    My Blog

  3. #3

    Thread Starter
    Lively Member
    Join Date
    Mar 2007
    Posts
    111

    Re: Connect to another website using Java Applet

    Thanks for your reply..

    I have tried this and it's giving me errors while compiling.

    Code:
    import java.awt.*; 
    import java.applet.*;
    import java.io.*;
    import java.net.*;
    
    
    public class testapplet extends Applet
    {
    
    URL myURL = new URL("http://www.google.com"); 
    URLConnection conn = myURL.openConnection(); 
    conn.setDoOutput(true); 
    conn.setDoInput(false); 
     
    InputStream is = conn.getInputStream(); 
    
    
        System.out.println(is);
    
    }
    All i want is just a very simple and basic applet to connect to a website and grab the text response.

    Thanks in advance.

  4. #4
    Arabic Poster ComputerJy's Avatar
    Join Date
    Nov 2005
    Location
    Happily misplaced
    Posts
    2,513

    Re: Connect to another website using Java Applet

    If you knew anything about programming, you'd know you can't place your method calls from the class body.

    You'll have to override the start method.
    "I'm not normally a praying man, but if you're up there, save me... Superman!" - Homer Simpson
    My Blog

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width