In my application I create a ServerSocket(1234) with some port. After I am finished, I close the socket. But when I try to make a new ServerSocket(1234) for the same port, it throws:
"the Address already in use: JVM_Bind"
If I create the ServerSocket with a different port, then it works.
What is the problem?
Thanks.
(I try to close it after finally and have even run isClosed and get as a result true.)
public void run() {
try {
BufferedInputStream bufferedinputstream = new BufferedInputStream(
new FileInputStream(fileReq));
BufferedOutputStream outStream = new BufferedOutputStream(
cs.getOutputStream());
byte buffer[] = new byte[1024];
int read;
System.out.println(cs);
while ((read = bufferedinputstream.read(buffer)) != -1)
{
outStream.write(buffer, 0, read);
outStream.flush();
}
System.out.println("File transfered");
outStream.close();
bufferedinputstream.close();
try {
this.finalize();
} catch (Throwable e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
} catch (Exception e) {
System.out.println("Exce....");
System.out.println(e.getMessage());
}
finally
{
if ( cs != null)
try {
int usedPort=cs.getLocalPort();
System.out.println("Closing "+cs);
cs.close();
System.out.println(cs+" Closed");
System.out.println("asd"+cs.isClosed());
portManager.getInstance().mp.put(usedPort,true);
} catch (IOException e) {
System.err.println("in sendToClient can't close sockt");
System.err.println(e.getMessage());
}
}
i edit 'cause i cant answer it myself for 8 hours....
find the problem!!!!!!!!!!!!!!!!!!!!!!
aaaaaaaaaa my badddddddddd
i close the socket that use the ServerSocket and not the ServerSocket him self...
mm 3 hour for this aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa next time log will help...
thank you all for your help...
