1

我的老师说在文件服务器程序ObjectInputStreamReader中是必须写的。当我问原因时,他说我对文件服务器程序很舒服。我认为这不是必要的理由。为什么InputStreamReader或其他替代品不能使用?ObjectInputStreamReaderover有什么好处InputStreamReader

这里的客户端/服务器代码:

public class Client {
    public static void main(String[] args) {
        Socket s = null;
        ObjectInputStream ois = null;
        ObjectOutputStream oos = null;
        Scanner sc = new Scanner(System.in);

        String data = "";
        try {
            s = new Socket("localhost", 1234);
            System.out.println("client is connectd");

            ois = new ObjectInputStream(s.getInputStream());
            String jai = (String) ois.readObject();
            System.out.println("DATA from SERVER:" + jai);
            oos = new ObjectOutputStream(s.getOutputStream());
        } catch (Exception e) {
            e.printStackTrace();
        }

        System.out.println("Enter file name:");
        try {
            String fil = (String) sc.next();
            OutputStream pw = new FileOutputStream(fil + ".new");
            oos.writeObject(fil);
            data = (String) ois.readObject();
            pw.write(data.getBytes());
        } catch (Exception e) {
            System.out.println(e.getMessage());
        }
        System.out.println("Content of file:" + data);
    }
}

谁能说出真正的原因是什么?

4

2 回答 2

2

AnInputStream是一个抽象类,可用于定义任何类型的输入流,包括从文件系统、URL、套接字等读取。

您实际上并没有创建一个InputStream,因为它本身并不意味着任何东西。相反,您创建一种定义如何读取/写入特定类型数据的InputStream类型,例如建议的ObjectInputStream. 此类定义正在写入的数据是 Java Object(实现SerializableExternalizable)。还有其他InputStreams用于通用文件数据、图像、音频和一系列其他类型。

没有这样的东西ObjectInputStreamReader,除非你自己写一个这样的类,目的是写一个ObjectInputStream

更多启示请参考ObjectInputStreamInputStream Java 文档

于 2012-05-23T13:32:49.600 回答
2

我认为你的意思是ObjectInputStreamBufferedInputStream(不是读者)。

ObjectInputStream包装输入流并提供允许从流中读取特定类型数据的类型化方法。例如readDouble()readObject()等等。

BufferedInputStream不提供额外的 API(与常规相比InputStream)。它唯一要做的就是缓冲数据,即逐块读取数据,这比逐字节读取要有效得多。

于 2012-05-23T13:34:31.523 回答