| Author |
Getting error in setupConnection()
|
Vishal Hegde
Ranch Hand
Joined: Aug 01, 2009
Posts: 973
|
|
Hi,
Well the code is big enough but i am getting error in this method.
Seriously not able to trace the error
private void setupConnection()
{
try{
ServerSocket serverSocket = new ServerSocket(2000);
Socket client = serverSocket.accept();
//System.out.println("Connection Established");
jTextField1.setText("Connection Established");
DataInputStream serverInputStream = new DataInputStream(new BufferedInputStream(client.getInputStream()));
int height = serverInputStream.readInt();
jTextField1.setText(" "+height);
serverInputStream.close();
generatePIN();
}
|
http://www.lifesbizzare.blogspot.com || OCJP:81%
|
 |
Ernest Friedman-Hill
author and iconoclast
Marshal
Joined: Jul 08, 2003
Posts: 24057
|
|
|
So, what's the error? Is it a compiler error, or a runtime error?
|
[Jess in Action][AskingGoodQuestions]
|
 |
 |
|
|
subject: Getting error in setupConnection()
|
|
|