0
FileOutputStream fos = new FileOutputStream(fileName);
InputStream is = clientSocket.getInputStream();
while ((readBytes = is.read()) != -1)
{
    fos.write(readBytes);
    System.err.println(readBytes);
}
System.err.println(readBytes);
clientSocket.shutdownOutput();
fos.close();
System.out.println("Trans complete");

クライアントは -1 を送信しますが、サーバーは -1 を受信できません

すべてのファイルを取得するにはどうすればよいですか?

4

1 に答える 1