I don't know why my program works when I debug it and fails in normal execution.
I have setup a simple server to feed a file over a socket. When a client connects a thread is started to carry this task out BUT it fails. I get a 'Socket is closed' error.
This is for homework: I can't advance until I figure out why this is happening and just want a nudge in the right direction please.
To get it to work in debug I set the break point in the server class where it accepts client connections.
Thanks in advance.
public class File_Server {
private static ServerSocket servsock;
public static void main(String[] args) throws IOException
{
// create socket
try {
servsock = new ServerSocket(4444);
} catch (Exception e) {
System.out.println("Port already in use.");
System.exit(1);
}
while (true) {
System.out.println("Waiting...");
try (Socket sock = servsock.accept()) {
System.out.println("Accepted connection : " + sock);
Thread t = new Thread(new CLIENTConnection(sock));
t.start();
} catch (Exception e) {
System.out.println("Cannot accept connection.");
}
}
}
}
public class CLIENTConnection implements Runnable {
private Socket client;
CLIENTConnection(Socket client) {
this.client = client;
}
@Override
public void run()
{
try {
FileInputStream fis = null;
// sendfile
File myFile = new File("studentData.txt");
byte[] mybytearray = new byte[(int) myFile.length()];
fis = new FileInputStream(myFile);
BufferedInputStream bis = new BufferedInputStream(fis);
bis.read(mybytearray, 0, mybytearray.length);
OutputStream os = client.getOutputStream();
System.out.println("Sending...");
os.write(mybytearray, 0, mybytearray.length);
os.flush();
fis.close();
} catch (IOException ex) {
Logger.getLogger(CLIENTConnection.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
public class File_Client {
private static long start = System.currentTimeMillis();
private static int bytesRead;
private static int current = 0;
public static void main(String[] args) throws IOException
{
int filesize = 60223861; // filesize temporary hardcoded
try (Socket sock = new Socket("127.0.0.1", 4444)) {
System.out.println("Connecting...");
// receive file
byte[] mybytearray = new byte[filesize];
InputStream is = sock.getInputStream();
FileOutputStream fos = new FileOutputStream("studentData-received.txt");
try (BufferedOutputStream bos = new BufferedOutputStream(fos)) {
bytesRead = is.read();//.read(mybytearray, 0, mybytearray.length);
current = bytesRead;
do {
bytesRead =
is.read(mybytearray, current, (mybytearray.length - current));
if (bytesRead >= 0) {
current += bytesRead;
}
} while (bytesRead > -1);
bos.write(mybytearray, 0, current);
bos.flush();
long end = System.currentTimeMillis();
System.out.println("Time taken " + (end - start) + " milliseconds");
}
} catch (Exception e) {
System.out.println("Cannot connect to server.");
}
}
}
