-
对象的序列化就是将object转化为byte序列查看全部
-
读一行 不能识别换行查看全部
-
字符流的过滤器查看全部
-
注意编码方式查看全部
-
字符流操作的是文本或文本文件查看全部
-
字符流查看全部
-
文本和文本文件查看全部
-
流的知识查看全部
-
CurrentTimeMillis()读取当前时间到1970年1月1日的毫秒数查看全部
-
搭配使用查看全部
-
创建目录查看全部
-
加true,原文件追加内容查看全部
-
反序列化操作 //反序列化操作,读取序列化了的文件 ObjectInputStream ois=new ObjectInputStream (new FileInputStream(file)); Student stu; try { stu = (Student)ois.readObject(); System.out.println(stu); ois.close(); } catch (ClassNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); }查看全部
-
序列化操作 String file="demo/obj.dat"; //对象的序列化操作 // ObjectOutputStream oos=new ObjectOutputStream // (new FileOutputStream(file)); // Student stu=new Student("10000","张三","21"); // oos.writeObject(stu); // oos.flush(); // oos.close();查看全部
-
java.io.FileOutputStream public class FileOutputStream extends OutputStream FileOutputStream(File file) Creates a file output stream to write to the file represented by the specified File object. FileOutputStream(File file, boolean append) Creates a file output stream to write to the file represented by the specified File object. FileOutputStream(FileDescriptor fdObj) Creates a file output stream to write to the specified file descriptor, which represents an existing connection to an actual file in the file system. FileOutputStream(String name) Creates a file output stream to write to the file with the specified name. FileOutputStream(String name, boolean append) Creates a file output stream to write to the file with the specified name.查看全部
举报
0/150
提交
取消