如何在客户端和服务器之间传输多个文件?

时间:2012-05-16 23:56:54

标签: java sockets client file-transfer

我在服务器和客户端之间重写了一个简单的文件传输代码示例。

它有效。

但我想让它能够在特定目录中传输多个文件。用户将写入文件名(位于该特定目录中),客户端将从服务器下载它们。我怎样才能做到这一点?有任何想法吗?谢谢。

客户代码:

    import java.net.*;
    import java.io.*;

    public class Client {

        static String hostname = "127.0.0.1";
        static int port = 4588;
        static int processedByte; 
        static byte[] theByte = new byte[1];

        static Socket client = null; 
          static InputStream inuputSt = null; 

        public static void main(String[] args) throws InterruptedException {
            System.out.println("connecting...");
            Thread.sleep(500);
            try { 
                client = new Socket(hostname, port); 
                inuputSt = client.getInputStream(); 
            } catch (IOException ex) { 
                System.out.println("connection error.");
            } 

            ByteArrayOutputStream arrayOutput = new ByteArrayOutputStream(); 

            if (inuputSt != null) { 

                FileOutputStream fileOutput = null; 
                BufferedOutputStream bufferedOutput = null; 
                try { 
                    System.out.println("downloading target file...");
                    Thread.sleep(800);
                    fileOutput = new FileOutputStream("file1_downloaded.txt"); 
                    bufferedOutput = new BufferedOutputStream(fileOutput); 
                    processedByte = inuputSt.read(theByte, 0, theByte.length); 

                    do { 
                            arrayOutput.write(theByte); 
                            processedByte = inuputSt.read(theByte); 
                    } while (processedByte != -1); 

                    bufferedOutput.write(arrayOutput.toByteArray()); 
                    bufferedOutput.flush(); 
                    bufferedOutput.close(); 
                    System.out.println("file downloaded");
                    client.close(); 
                } catch (IOException ex) { 
                    System.out.println("file transfer error."); 
                } 
            }

        }
    }

服务器代码:

import java.net.*;
import java.io.*;

public class Server {
static int port = 4588;
public static void main(String[] args) {

    while (true) {
        ServerSocket server = null; 
        Socket connection = null; 
        BufferedOutputStream bufferedOutput = null; 

        try { 
            server = new ServerSocket(port); 
            connection = server.accept(); 
            bufferedOutput = new BufferedOutputStream(connection.getOutputStream()); 
        } catch (IOException ex) { 
            // Do exception handling 
        } 

        if (bufferedOutput != null) { 
            File fileToSend = new File("files\\file1.txt"); 
            byte[] mybytearray = new byte[(int) fileToSend.length()]; 

            FileInputStream fileInputSt = null; 

            try { 
                fileInputSt = new FileInputStream(fileToSend); 
            } catch (FileNotFoundException ex) { 
                // exception stuff
            } 
            BufferedInputStream bufferedInput = new BufferedInputStream(fileInputSt); 

            try { 
                bufferedInput.read(mybytearray, 0, mybytearray.length); 
                bufferedOutput.write(mybytearray, 0, mybytearray.length); 
                bufferedOutput.flush(); 
                bufferedOutput.close(); 
                connection.close(); 

                //file1.txt has been downloaded
                return; 
            } catch (IOException ex) { 
                // exception stuff
            } 
        } 
    } 
}

}

3 个答案:

答案 0 :(得分:2)

您建议将HTTP作为客户端和服务器的协议 - HTTP是一种很好的协议,但如果您想自己完成整个事情,可能会遇到很大的实施障碍。 HTTP PUT verb可用于上传文件,以这种方式使用HTTP的好处是您的客户端和服务器可以与其他旨在使用PUT请求的工具进行通信。 (PUT比其他HTTP谓词少用,因此并非所有HTTP工具都能正常工作; curl(1)程序通过{{1} 支持PUT如果选择HTTP,这将是一个很好的实现辅助工具。)

有各种REST Frameworks可以帮助您编写HTTP软件;我听说过有关Restlet的好消息,这将是我推荐的起点。

但是你没有拥有来选择HTTP作为你的协议。如果你实现自己的协议,我认为你可以学习关于网络编程的很多 - 它会教你很多关于API设计和套接字编程的方法,这些方法很难用编写HTTP协议工具(如果你试图自己完全实现HTTP,那么令人沮丧)。

考虑这个对话:

客户 - >服务器:名为“flubber”的上传文件,大小为200000字节
服务器 - >客户:好的 客户 - >服务器: flubber内容
服务器 - >客户:好的 客户 - > server:上传名为“blort”的文件,大小为10个字节
服务器 - >客户端:错误,文件存在
...

您可能希望添加新命令以在两端散列文件以确保文件传输成功,发送特定字节范围的命令(附加到现有文件或重新启动失败的传输),命令列出服务器上的现有文件名,覆盖现有文件的命令,从服务器删除文件的命令等。编写自己的协议的最好的部分是你可以决定你的程序将支持什么。缺点是您可以测试您编写的功能,并且测试某些情况可能很困难。 (假设,考虑到客户端可能会在不同的TCP数据包中发送命令的每个字符。实现缓存以存储整个命令不是琐碎,但它已经为您完成了像Restlet这样的工具。)

Juan's advice to use multiple TCP sessions并非绝对必要 - 尽管它可能是您最简单的前进道路。您需要添加一些机制来为远程对等方提供文件名,这可能最好通过“控制”通道(第一个会话运行 - 类似于FTP)或者它可能是你在文件内容之前发送的东西(类似于HTTP)。

我建议避免多个连接 - 每个连接需要三次系统之间的往返时间来设置和开始传输字节。这种延迟可能非常烦人,尤其是当您尝试传输数百个小文件时。与实际发送数据相比,您甚至可以花更多时间设置连接。

但它是你的工具 - 你可以按照自己的意愿设计它。玩得开心。

答案 1 :(得分:1)

我认为您需要为每个文件创建一个新连接,因此在这种情况下,您将能够同时传输文件。

您可能必须修改服务器以为每个客户端连接创建一个新线程(或从线程池中获取一个线程),以便它可以同时与多个线程一起使用。

然后,您可以为每个文件运行一次客户端。

干杯

答案 2 :(得分:1)

好的,您可以传输制作ArrayList或List文件的多个文件。走出文件系统路径后进入数组。我希望能帮到你。