摘要: public static boolean writeObject(String filePath, Object object){ try{ File file = new File(filePath); file.createNewFile();//noly create when the fi 阅读全文
posted @ 2022-03-14 23:09 bert_qin 阅读(1279) 评论(0) 推荐(0) 编辑
摘要: 1. 嵌套打开的流只需关闭最后打开的流,先打开的会自动关闭; 2. 打开的流可以多次关闭不会出错; 3. 后面尝试打开流时可能会发生异常,此时要考虑关闭前面已经打开的流。 下面是一种可行的方法: public static Object read(String filePath){ File fil 阅读全文
posted @ 2022-03-14 21:11 bert_qin 阅读(1224) 评论(0) 推荐(0) 编辑