0
我有一個客戶端服務器程序,我需要序列化文件對象並將其發送給客戶端。文件對象序列化
在服務器端:
FileInputStream input_file = new FileInputStream(file);
object_output_stream.writeObject(input_file);
在客戶端:
FileOutputStream ouput_file = new FileOutputStream(new File(filename));
output_file = object_input_stream.readObject();
我需要序列化INPUT_FILE對象,並將其發送給客戶端。 ObjectOutputStream和ObjectInputStream是不可序列化的。最好的辦法是什麼?