in following (self-signed) applet, why if i use paint, i get "mypc-PC/192.168.x.xxx" (in alert and in drawing box) and if i use start, i get only "localhost/127.0.0.1" in alert?

i don't really need paint, i just need to call js with parameter "mypc-PC/...."

import java.net.InetAddress;
import java.net.UnknownHostException;
import java.applet.*;
import java.net.*;
//import java.awt.Graphics;

public class myClass extends Applet{

   // public void paint(Graphics g){
        public void start(){
        InetAddress ip;
        try {

            ip = InetAddress.getLocalHost();

                getAppletContext().showDocument
                   (new URL("javascript:alert(\"wth" + ip.toString() +"\")"));

     //         g.drawString(ip.toString() + sb.toString(), 15, 25);


        } 
        catch (UnknownHostException e) {

             e.printStackTrace();

        }

        catch (MalformedURLException e) { 

             e.printStackTrace();

        }
     }

}
link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.