客户端服务器文件传输聊天Java GUI

时间:2014-12-30 05:46:21

标签: java

我有一个客户端和一个服务器,

1)客户端应发送选择文件并将其发送到服务器

2)客户端应发送命令消息,以便服务器知道传入的文件不是消息(这就是为什么我有" SF"代表发送文件)

3)服务器接收文件并将它们存储在系统中的某个地方

此外,我不想在发送/接收文件后关闭套接字(因为这是在客户端点击断开连接按钮时完成的)

下面是我的代码,但由于某些原因,如果有人可以帮我修复它,它就不起作用了。

客户端

 public void sendFiles(String file)  {
        this.out.print("SF");
        this.out.flush();
        File myfile = new File(file);
        // Get the size of the file
        long length = myfile.length();
        if (length > Integer.MAX_VALUE) {
            System.out.println("File is too large.");
        }
        byte[] bytes = new byte[(int) length];
        FileInputStream fis;
        try {
            fis = new FileInputStream(myfile);
            BufferedInputStream bis = new BufferedInputStream(fis);
            BufferedOutputStream out = new BufferedOutputStream(sock.getOutputStream());

            int count;
            while ((count = bis.read(bytes)) > 0) {
                out.write(bytes, 0, count);
            }
            System.out.println("count "+bytes.length);
//          this.out.flush();
            out.flush();
//          out.close();
            fis.close();
            bis.close();
        } catch (FileNotFoundException e) {     
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
}

服务器

public void recvFile() {

        InputStream is = null;
        FileOutputStream fos = null;
        BufferedOutputStream bos = null;
        int bufferSize = 0;

        try {
            is = sock.getInputStream();

            bufferSize = sock.getReceiveBufferSize();
            System.out.println("Buffer size: " + bufferSize);

            fos = new FileOutputStream("/Users/day/Documents/Parallels/server.txt");
            bos = new BufferedOutputStream(fos);

            byte[] bytes = new byte[bufferSize];

            int count;
            while ((count = is.read(bytes)) > 0) {
                bos.write(bytes, 0, count);
            }
            System.out.println("bytes "+bytes.length);
            System.out.println("count "+count);

            bos.flush();
            bos.close();
//          is.close();
//          sock.close();

        } catch (IOException e) {
            System.out.println("ERROR" +e);
        }

同样在服务器端;这就是我跳转到方法recvFile();

的方法
if (message.contains("SF")) {
                        recvFile();
}

关于我的问题的更多解释: 它不起作用,我不知道文件是否实际发送正确?或者文件收到正确,因为我收到的文件中有0个字节。此外,这是我不想关闭连接的事情,因为这是一个聊天,所以我怎么能让服务器知道这是文件的结尾? 有人可以帮助我使代码有效,因为我不知道什么是错的?感谢

1 个答案:

答案 0 :(得分:0)

请你详细说明你得到的错误。这可能有助于回答。因为,表面上看代码结构看起来很好。

此外,我假设您正在使用TCP连接进行文件传输。 P.S。:我无法在这个问题上添加评论,所以在这里提问。