have you ever have this kind of display..when running an applet ? while the code is just like this.. Socket s = null; try { s = new Socket(getCodeBase().getHost(),Integer.parseInt(p.getProperty(“image.1.port”))); // changed the status.. to state that we’re connected? status.setText(“Connected to:” + getCodeBase().getHost() + “:” + p.getProperty(“image.1.port”)); OutputStream slout = s.getOutputStream(); BufferedWriter bw = new BufferedWriter( […]

continue reading.....