首页 > 其他 > 详细

类对象的读写文件

时间:2014-04-15 15:30:19      阅读:511      评论:0      收藏:0      [点我收藏+]
bubuko.com,布布扣
package com.coretech.defobject;


import java.io.EOFException;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;

public class ObjRwTool {
    public Object readObj(String filename ) {
        ObjectInputStream inputStream = null;
        Object obj = null;
        try {
            inputStream = new ObjectInputStream(new FileInputStream(filename));
            obj = inputStream.readObject();        
        } catch (EOFException ex) { // 在读取到文件结束时触发此异常
            System.out.println("End of file reached.");
        } catch (ClassNotFoundException ex) {
            ex.printStackTrace();
        } catch (FileNotFoundException ex) {
            ex.printStackTrace();
        } catch (IOException ex) {
            ex.printStackTrace();
        } finally {
            // Close the ObjectInputStream
            try {
                if (inputStream != null) {
                    inputStream.close();
                }
            } catch (IOException ex) {
                ex.printStackTrace();
            }
        }
        return obj;
    }
    
    public Boolean writeObject(String filename,Object obj) {

        ObjectOutputStream outputStream = null;
        Boolean bRet = false;
        try {
            outputStream = new ObjectOutputStream(new FileOutputStream(filename));            
            outputStream.writeObject(obj);
            bRet= true;
        } catch (FileNotFoundException ex) {
            ex.printStackTrace();
        } catch (IOException ex) {
            ex.printStackTrace();
        } finally {
            // Close the ObjectOutputStream
            try {
                if (outputStream != null) {
                    outputStream.flush();
                    outputStream.close();
                }
            } catch (IOException ex) {
                ex.printStackTrace();
            }
        }
        return bRet;
    }
}
bubuko.com,布布扣

 

类对象的读写文件,布布扣,bubuko.com

类对象的读写文件

原文:http://www.cnblogs.com/profession/p/3663292.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!