文件上传&在服务器客户端之间下载

时间:2011-01-23 18:35:47

标签: java sockets file upload download

我有一个创建客户端 - 服务器文件传输应用程序的任务。 这可能是一个简单的例子。我尝试了在SOF中类似问题中给出的示例,但他们无法传输文件。

我正在尝试通过套接字与客户端和服务器进行通信。如果有人可以帮助我,我会很高兴的。

客户端会将文件上传到服务器。客户端也可以从服务器下载文件。这就是我创建应用程序的方式。

以下是客户端代码:

package wdc;

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

class TCPClient {

    public static void main(String args[]) {
        byte[] aByte = new byte[1];
        int bytesRead;

        Socket clientSocket = null;
        InputStream is = null;

        try {
            clientSocket = new Socket("127.0.0.1", 3248);
            is = clientSocket.getInputStream();
        } catch (IOException ex) {
            // Do exception handling
        }

        ByteArrayOutputStream baos = new ByteArrayOutputStream();

        if (is != null) {

            FileOutputStream fos = null;
            BufferedOutputStream bos = null;
            try {
                fos = new FileOutputStream("C:\\testout.pdf");
                bos = new BufferedOutputStream(fos);
                bytesRead = is.read(aByte, 0, aByte.length);

                do {
                        baos.write(aByte);
                        bytesRead = is.read(aByte);
                } while (bytesRead != -1);

                bos.write(baos.toByteArray());
                bos.flush();
                bos.close();
                clientSocket.close();
            } catch (IOException ex) {
                // Do exception handling
            }
        }
    }
}

这是服务器端代码:

package wds;

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

class TCPServer {

    public static void main(String args[]) {

        while (true) {
            ServerSocket welcomeSocket = null;
            Socket connectionSocket = null;
            BufferedOutputStream outToClient = null;

            try {
                welcomeSocket = new ServerSocket(3248);
                connectionSocket = welcomeSocket.accept();
                outToClient = new BufferedOutputStream(connectionSocket.getOutputStream());
            } catch (IOException ex) {
                // Do exception handling
            }

            if (outToClient != null) {
                File myFile = new File("C:\\testserver.pdf");
                byte[] mybytearray = new byte[(int) myFile.length()];

                FileInputStream fis = null;

                try {
                    fis = new FileInputStream(myFile);
                } catch (FileNotFoundException ex) {
                    // Do exception handling
                }
                BufferedInputStream bis = new BufferedInputStream(fis);

                try {
                    bis.read(mybytearray, 0, mybytearray.length);
                    outToClient.write(mybytearray, 0, mybytearray.length);
                    outToClient.flush();
                    outToClient.close();
                    connectionSocket.close();

                    // File sent, exit the main method
                    return;
                } catch (IOException ex) {
                    // Do exception handling
                }
            }
        }
    }
}

我无法运行这些源文件,我不知道为什么。

1 个答案:

答案 0 :(得分:4)

我查看了代码,乍一看似乎没有任何问题。因此,我按原样复制了它,将服务器代码中使用的文件更改为系统中存在的文件并运行代码。它工作得很好,所以至少我可以向你保证代码是正确的,它可以做它应该做的事情。我在Ubuntu机器上运行我的代码,但我不确定这会如何影响结果。

我的帮助只是一些指示: 1)您运行TCPServer文件然后运行TCPClient吗? (愚蠢,我知道,但你永远都不知道) 2)是否有可能使用端口3248的进程? 3)运行文件的进程是否具有读/写指定路径的权限? 4)TCPServer中指定的文件是否确实存在? 5)您是否尝试在IDE外部运行类文件 - 无论哪种方式,最好学习如何独立于IDE。

希望这对你的任务很有帮助,祝你好运。