1

我需要更改此代码,以便它在当前只发送一个文件时发送一个图像文件目录,我的主要目标是让它请求一个目录,然后发送该目录中的所有文件(图像文件)到服务器,然后我需要它来显示发送了多少数据,我当前拥有的代码是:

客户:

package sockets;
import java.net.*;
import java.io.*;

public class Client {

    public static void main (String [] args ) throws IOException {
        int filesize=1022386;
        int bytesRead;
        int currentTot = 0;
        Socket socket = new Socket("127.0.0.1",6789);
        byte [] bytearray  = new byte [filesize];
        InputStream is = socket.getInputStream();
        FileOutputStream fos = new FileOutputStream("copy.txt");
        BufferedOutputStream bos = new BufferedOutputStream(fos);
        bytesRead = is.read(bytearray,0,bytearray.length);
        currentTot = bytesRead;
        System.out.println("The Size of the data transferred is " + bytesRead + " Bytes");

        do {
           bytesRead =
              is.read(bytearray, currentTot, (bytearray.length-currentTot));
           if(bytesRead >= 0) currentTot += bytesRead;
        } while(bytesRead > -1);

        bos.write(bytearray, 0 , currentTot);
        bos.flush();
        bos.close();
        socket.close();
      }
}

服务器:

package sockets;
import java.net.*;
import java.io.*;
public class Server {


 public static void main (String [] args ) throws IOException {`

            ServerSocket serverSocket = new ServerSocket(6789);
              Socket socket = serverSocket.accept();
              System.out.println("Accepted connection : " + socket);
              File transferFile = new File ("Orders.txt");
              byte [] bytearray  = new byte [(int)transferFile.length()];
              FileInputStream fin = new FileInputStream(transferFile);
              BufferedInputStream bin = new BufferedInputStream(fin);
              bin.read(bytearray,0,bytearray.length);
              OutputStream os = socket.getOutputStream();
              System.out.println("Sending Files...");
              os.write(bytearray,0,bytearray.length);
              os.flush();
              socket.close();
              System.out.println("File transfer complete");
            }
}

谢谢

4

2 回答 2

1

遍历所选目录中的所有文件并获取您要发送的所有已知图像扩展名。

这是一个迭代文件的示例。

然后,将每个文件中的字节从客户端流式传输到服务器。

我建议使用FTP将您的文件发送到您的服务器,作为针对此类问题的既定协议。

于 2013-08-19T23:38:01.297 回答
0

不可能按原样完整发送目录。您有 2 个选项:

  1. 创建一个 zip 文件,然后发送它。
  2. 打开目录并遍历整个目录并单独发送每个文件。
于 2013-08-19T23:48:21.130 回答