respected experts outhere,
please help me to slove this problem.
i wanted to have this program in
applet, i tried this but got confuesed with the (system.in).i can't make textfield take the input from user.
i would be grateful if you make applet code out of this program.
import java.net.*;
import java.io.*;
public class client
{
Socket client;
BufferedReader keyin;
BufferedReader in;
PrintWriter out;
String keyinput;
String msg;
public client()
{
try
{
client=new Socket("127.0.0.1",8080);
keyin=new BufferedReader(new InputStreamReader(System.in));
in=new BufferedReader(new InputStreamReader(client.getInputStream()));
out=new PrintWriter(client.getOutputStream(),true);
while(true)
{
try
{
keyinput=keyin.readLine();
out.println(keyinput);
msg=in.readLine();
System.out.println(msg);
}
catch(Exception e)
{
System.out.println("error: "+e.getMessage());
}
}
}
catch(Exception e)
{
System.out.println("error :"+e.getMessage());
}
}
public static void main(String args[])
{
client vclient=new client();
}
}