我是 Java 新手,所以我需要帮助。我正在编写一个应用程序,它将 onClick 向服务器发送一个字符串,服务器需要使用套接字返回一个图像。所以我的客户端是Android,服务器端是PC - java。我认为我的服务器端没问题(因为他打印出了所有 system.out.print 命令)但我的客户端不好。请告诉我我的错误在哪里?谢谢!
这是我的服务器(PC)端的代码(通过函数参数传递套接字):
try {
dataInputStream = new DataInputStream(socket.getInputStream());
poruka = "" + dataInputStream.readUTF();
System.out.print(poruka);
int bytecount = 2048;
byte[] buf = new byte[bytecount];
OutputStream OUT = socket.getOutputStream();
BufferedOutputStream BuffOUT = new BufferedOutputStream(OUT, bytecount);
FileInputStream in = new FileInputStream("screenShot.jpg");
int i = 0;
while ((i = in.read(buf, 0, bytecount)) != -1) {
BuffOUT.write(buf, 0, i);
System.out.print("check" + buf[0]);
BuffOUT.flush();
}
in.close();
BuffOUT.close();
System.out.print("over");
} catch (IOException e) {
e.printStackTrace();
}finally{
try {
socket.close();
dataInputStream.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
这是我的客户端(Android)端:
Socket socket = null;
DataOutputStream dataOutputStream = null;
try {
socket = new Socket(IPadresa, 8888);
dataOutputStream = new DataOutputStream(socket.getOutputStream());
slanje = "hy string";
dataOutputStream.writeUTF(slanje);
FileOutputStream outToFile = new FileOutputStream("slika.jpg");
int bytecount = 2048;
byte[] buf = new byte[bytecount];
InputStream IN = socket.getInputStream();
BufferedInputStream BuffIN = new BufferedInputStream(IN, bytecount)
int i = 0;
int filelength = 0;
while((i = BuffIN.read(buf, 0, bytecount)) != -1) {
filelength += i;
outToFile.write(buf, 0, i);
outToFile.flush();
}
IN.close();
BuffIN.close();
dataOutputStream.close();
socket.close();
} catch (UnknownHostException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
更多信息:在服务器端,我可以看到从客户端发送的字符串。我有那个 System.out.print("over"); 每次我将字符串发送到服务器时都会打印命令。我也有 System.out.print("check" + buf[0]); 多次从服务器打印出来。所以这就是为什么我认为客户端有问题。
而且我的客户端没有抛出任何异常......但我注意到客户端从未通过while循环。它卡在那里。