java - 如何使用java中的套接字编程发送多个图像并写入服务器端的特定路径?

标签 java sockets file-transfer

我想在 wifi 中的不同系统上将多个图像从客户端发送到服务器端,并在服务器端将此文件写入特定位置。

提前致谢。

最佳答案

在Client.java文件中

public class Client {

    public void send(String file_name){
        try {
            Socket socket = new Socket("IBM-PC", 3332);
            File file = new File(file_name);
            System.out.println(file_name);
            ObjectInputStream ois = new ObjectInputStream(
                    socket.getInputStream());
            ObjectOutputStream oos = new ObjectOutputStream(
                    socket.getOutputStream());
            oos.writeObject(file.getName());
            FileInputStream fis = new FileInputStream(file);
            byte[] buffer = new byte[Server.BUFFER_SIZE];
            Integer bytesRead = 0;
            while ((bytesRead = fis.read(buffer)) > 0) {
                oos.writeObject(bytesRead);
                oos.writeObject(Arrays.copyOf(buffer, buffer.length));
            }
            ois = null;
            oos = null;
        } catch (Exception e) {
            System.out.println(e);
        }
    }

    public static void main(String[] args) throws Exception {
        Client c = new Client();
        c.send("D://1.jpg");         // first image path
        c.send("D://0.jpg");        //  second image path
    }   
}

在 Server.Java 文件中

public class Server extends Thread {
    public static final int PORT = 3332;
    public static final int BUFFER_SIZE = 500102;

    @Override
    public void run() {
        try {
            ServerSocket serverSocket = new ServerSocket(PORT);
            while (true) {
                Socket s = serverSocket.accept();
                saveFile(s);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
    private void saveFile(Socket socket) throws Exception {
        ObjectOutputStream oos = new ObjectOutputStream(
                socket.getOutputStream());
        ObjectInputStream ois = new ObjectInputStream(socket.getInputStream());
        FileOutputStream fos = null;
        byte[] buffer = new byte[BUFFER_SIZE];
        // 1. Read file name.
        Object o = ois.readObject();
        if (o instanceof String) {
            fos = new FileOutputStream("D:\\temp\\"+o.toString());  // Edit it for specific path
            System.out.println("D:\\temp\\"+o.toString());
        } else {
            throwException("Something is wrong");
        }
        // 2. Read file to the end.
        Integer bytesRead = 0;
        do {
            o = ois.readObject();
            if (!(o instanceof Integer)) {
                throwException("Something is wrong");
            }
            bytesRead = (Integer) o;
            o = ois.readObject();
            if (!(o instanceof byte[])) {
                throwException("Something is wrong");
            }
            buffer = (byte[]) o;
            // 3. Write data to output file.
            fos.write(buffer, 0, bytesRead);
        } while (bytesRead == BUFFER_SIZE);
        System.out.println("File transfer success");
        fos.close();
        ois.close();
        oos.close();
    }
    public static void throwException(String message) throws Exception {
        throw new Exception(message);
    }
    public static void main(String[] args) {
        new Server().start();
    }
}

First run server.java file and then run client.java file

希望对你有帮助...

关于java - 如何使用java中的套接字编程发送多个图像并写入服务器端的特定路径?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31423423/

相关文章:

java - Android TCP - 应用程序关闭时套接字不会断开连接

c - 在 C 中使用 UDP 套接字传输文件

linux - 使用 Lsyncd 保留文件的所有权

java - 如何使用mapPartitions函数将Rdd转换为数据集

java - 重复实例化匿名类是否浪费?

java - 尝试重定向时出现 Spring Security 错误 "Access is Denied"

c++ - GetQueuedCompletionStatus 延迟

java - 尝试套接字连接后地址已被使用

Netty:如何处理从 ChunkedFile 接收到的 block

websphere - 如何找出WebSphere发行版中包含哪些第三方库版本