Java Server Android客户端Wifi发送文件,套接字错误

时间:2013-10-07 16:09:26

标签: java android client-server

将文件从服务器(桌面APP)发送到客户端(Android)时出现问题....

在发送文件之前,服务器发送元数据,如文件大小,名称等.....

服务器端发送方法:

private void sendPdfData(OutputStream os, File file) throws IOException {

    os.flush();
    FileInputStream fis = new FileInputStream(file);
    byte[] buffor = new byte[1024];
    long count = 0L;
    long size = file.length();
    int current = 0;   

    while (count < size) {  
        current = fis.read(buffor, 0, buffor.length);
        os.write(buffor, 0, current);
        count += current;
    }

    fis.close();
    os.flush();
}

客户端接收方法:

@Override
protected String doInBackground(Void... params) {

    String pathToPdf = "";

    if (pdf.getLength() > 0) {

        InputStream is;

        try {
            byte b = 0;
            clientSocket.getOutputStream().write(b);
            is = clientSocket.getInputStream();
            pathToPdf = pathToExternalStorageFolder+pdf.getMeta().getName();
            pathToPdf = pathToPdf.replace(".\\", "/");
            pathToPdf = pathToPdf.replace("\\", "/");
            int size = pdf.getLength();
            byte[] buffor = new byte[1024];
            int current = 0;
            int count = 0;

            if (pdf.getMeta() != null) {
                FileOutputStream fos = new FileOutputStream(pathToPdf);

                while (count < size) {
                    current = is.read(buffor, 0, buffor.length);
                    fos.write(buffor, 0, current);
                    count += current;
                }
                fos.close();
            }

        } catch (IOException e) {
            e.printStackTrace();
        }
    }    
    return pathToPdf;
}

发送文件时出现一些随机错误:

java.net.SocketException: Software caused connection abort: socket write error
java.net.SocketException: Connection reset by peer: socket write error

File size: 2317679
Sended: 44032

更新08.09.2013

我创建桌面客户端应用以检查服务器应用。 当我在NetBeans中运行服务器和客户端时,一切运行都很好,我使用接口地址(不是lopback)。 当我从jar运行客户端时我有问题:文件列表为空但在服务器端不为空且不为空,当从android连接时我获取文件列表wtfigo - magic。

1 个答案:

答案 0 :(得分:0)

“本地网络系统中止连接时可能会发生此错误,例如,当数据重新传输失败后,WinSock关闭已建立的连接时(接收方永远不会确认数据流套接字上发送的数据)。”。

http://msdn.microsoft.com/en-us/library/ms832256.aspx

https://forums.oracle.com/thread/1691330

一个线程中的

Socket.close(),而另一个线程正在读取或写入该套接字,导致套接字关闭后抛出异常。

尝试将autoReconnect=true添加到jdbc连接字符串