3

编辑* 我在客户端服务器上成功了。现在我正在两个模拟器之间传输文件。该文件确实在模拟器之间传输,但我注意到收到的文件大小与原始文件不同。例如,A.jpg 大小为 900KB,但接收到的文件小于 900KB。我检查了文件传输大小,发现传输时丢失了一些数据(字节)。这是怎么回事?

这是代码:

客户端(发送文件)

File myFile = new File ("/mnt/sdcard/Pictures/A.jpg");
FileInputStream fis = new FileInputStream(myFile);
OutputStream os = socket.getOutputStream();
int filesize = (int) myFile.length();

byte [] buffer  = new byte [filesize];
     int bytesRead =0;
     while ((bytesRead = fis.read(buffer)) > 0) {
     os.write(buffer, 0, bytesRead);
//Log display exact the file size
     System.out.println("SO sendFile" + bytesRead);
     }
     os.flush();
     os.close();
     fis.close();
     Log.d("Client", "Client sent message");
     socket.close();

服务器(接收文件)

FileOutputStream fos = new FileOutputStream("/mnt/sdcard/Pictures/B.jpg");
@SuppressWarnings("resource")
BufferedOutputStream bos = new BufferedOutputStream(fos);
InputStream is = clientSocket.getInputStream();

byte[] aByte = new byte[1024];
int bytesRead;
while ((bytesRead = is.read(aByte)) != -1) 
{
     bos.write(aByte, 0, bytesRead);
//Log display few parts the file size is less than 1024. I total up, the lost size caused the file received is incomplete
     System.out.println("SO sendFile" + bytesRead);
 }
clientSocket.close();

*编辑 2

当我浏览谷歌时,我发现 .read(buffer) 不能保证读取文件的完整大小(字节)。因此,接收到的文件总是丢失一些字节(如空格、空字符)。为了解决这个问题,首先发送文件大小通知接收方,然后才开始传输文件。

4

3 回答 3

1

NetworkOnMainThreadException 发生是因为您必须使用AsyncTask

NullPointerException发生是因为您尝试使用PrintWriterSockets 的结果。由于您对 Sockets 一无所知,因此您会收到此错误。

于 2012-12-31T07:20:08.803 回答
0

NetworkOnMainThreadException告诉你你做错了什么。

您需要将网络内容放入单独的线程(AsyncTask或类似线程)中。

于 2012-12-31T07:15:35.467 回答
0

您不能在 Android 的主线程上调用任何服务器操作。在 Android OS 4.0 及更高版本中,这将直接导致NetworkOnMainThreadException。您有 2 个选择:

1)要么使用AsyncTask调用您的每个服务器操作。

2)或使用用户定义的线程进行任何类型的服务器操作。

我也在为这个异常而苦苦挣扎,只在4.0以上的OS版本的设备中,所以你不能忽视Android的这些小需求。

于 2012-12-31T07:24:56.010 回答