简体   繁体   English

通过套接字发送文件仅一次

[英]sending file over socket only works one time

I made a code that sending files from one computer to another, the problem is that after one sending its not working anymore. 我编写了一个代码,将文件从一台计算机发送到另一台计算机,问题是在一台计算机发送完文件后,它不再起作用。 I know that the problem is when i'm writing to the writer but I don't know why its not working. 我知道问题出在我写给作家的时候,但我不知道为什么它不起作用。

client: 客户:

    File file =new File(path);
    long fileSize = file.length();
    long completed = 0;
    int step = 150000;
    Request req = new Request(RequetType.DOWNLOAD_FILE,file.getName());
    writer.writeObject(req);
    writer.flush();
    // creates the file stream
    FileInputStream fileStream = new FileInputStream(file);

    // sending a message before streaming the file
   // writer.writeObject("SENDING_FILE|" + file.getName() +"|" + fileSize);
    writer.reset();
    byte[] buffer = new byte[step];
    while (completed <= fileSize) {
        fileStream.read(buffer);
        writer.write(buffer);
        completed += step;
    }
    System.out.println(completed);
    //writer.writeObject("SEND_COMPLETE"); 
    fileStream.close();

server: 服务器:

                String filename = (String)req.getContent();

                try {
                    FileOutputStream outStream =new FileOutputStream(Startdir+""+filename);
                    byte[] buffer = new byte[200000];
                    int bytesRead = 0, counter = 0;

                    bytesRead = this.reader.read(buffer);  
                    if (bytesRead >= 0) {
                        outStream.write(buffer, 0, bytesRead);
                        counter += bytesRead;
                        System.out.println("total bytes read: " +
                                                        counter);
                    }
                    if (bytesRead < 1024) {
                        outStream.flush();
                    }
                    while (true) 
                    {
                        bytesRead = this.reader.read(buffer);
                        if (bytesRead >= 0) {
                            outStream.write(buffer, 0, bytesRead);
                            counter += bytesRead;
                            System.out.println("total bytes read: " +
                                                            counter);
                        }
                        if (bytesRead ==0) 
                        {
                            outStream.flush();
                            break;
                        }
                    }
                    System.out.println("Sent:"+filename+"  from:"+MainApp.computersconnection.getIp());

                } catch (Exception e) {
                    System.out.println("Error on downloading file!");
                }

You need to flush the streams in the end even if the file isn't 0 bytes long. 即使文件的长度不为0个字节,也需要最后冲洗流。 Try implementing that change and tell me if it still gives you trouble. 尝试实施该更改,并告诉我是否仍然给您带来麻烦。

(Flush the output stream when your done sending a file). (完成发送文件后,刷新输出流)。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM