现在的位置: 首页 > 综合 > 正文

Java把double数据写入文件中

2017年10月13日 ⁄ 综合 ⁄ 共 2492字 ⁄ 字号 评论关闭
public class ReadOrWriteObject {

	private FileInputStream fileIns = null ;//文件输入流
	private FileOutputStream   fileOts = null;//文件输出流
	private ObjectInputStream  objectIns = null ;//对象输入流
	private ObjectOutputStream objectOts = null ;//对象输出流
	private String fileName = null;//待处理的文件名
	public static Boolean FileRead = true ;
	public static Boolean FileWrite = false ;

	/**
	 * 
	 * @param fileName:文件名
	 */
	public ReadOrWriteObject(String fileName){
		this.fileName = fileName ;
	}
	
	/**
	 * 创建对象之后,首先必须以某种方式打开文件,如读的方式,或者写的方式
	 * @param fileName: The name of the file.
	 * @param bool: Whether the file read or write.如 FileRead or FileWrite
	 * @return
	 */
	public Boolean openFile(Boolean bool){
		
		if(bool)//if bool is true,the file is read.
		{
			try {
				this.fileIns = new FileInputStream(this.fileName);
				this.objectIns = new ObjectInputStream(fileIns);
			} catch (FileNotFoundException e) {
				e.printStackTrace();
			}catch (IOException e) {
				e.printStackTrace();
			}
		}
		else{
			try {
				this.fileOts = new FileOutputStream(this.fileName);
				this.objectOts = new ObjectOutputStream(this.fileOts);
			} catch (FileNotFoundException e) {
				e.printStackTrace();
			} catch (IOException e) {
				e.printStackTrace();
			}
		}
		return true ;
	}
	
	/**
	 * 关闭文件流,对象流
	 * @return 成功关闭返回true
	 */
	public Boolean closeFile(){
		
		if(null !=this.fileIns){
			try {
				this.objectIns.close();
				this.fileIns.close() ;
				objectIns = null;
				fileIns = null ;
			} catch (IOException e) {
				e.printStackTrace();
			}
		}
		if(null != this.fileOts){
			try {
				this.objectOts.close();
				this.fileOts.close();
				objectOts = null ;
				fileOts = null ;
			} catch (IOException e) {
				e.printStackTrace();
			}
		}
		return true ;
	}
	
	/**
	 * 刷新缓冲区
	 */
	public void flush(){
		try {
			this.objectOts.flush();
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
	
	/**
	 * 
	 * @param d 需要写入文件的double数据
	 * @return 写入成功则返回true,否则返回false
	 */
	public Boolean writeDouble(double d){
		if(this.objectOts!=null){
			try {
				this.objectOts.writeDouble(d);
			} catch (IOException e) {
				e.printStackTrace();
			}
			return true ;
		}else{
			return false ;
		}
	}
	
	/**
	 * 读取double型数据
	 * @return 返回无穷小为false
	 */
	public double readDouble(){
		double d=0;
		if(this.objectIns!=null){	
			try {
				d = this.objectIns.readDouble();//读取到文件末尾,被EOFException捕获
				
			} catch (EOFException e) {
				this.closeFile();
				return Double.MIN_NORMAL;
			} catch (IOException e) {
				this.closeFile();
				e.printStackTrace();
			}
			return d ;
		}
		else{
			return Double.MIN_NORMAL;
		}
	}
	
	
	/**
	 * Example
	 * @param args
	 */
	public static void main(String[] args) {
		//写入Double数据
		String file = "F:\\1.txt";
		ReadOrWriteObject rOd = new ReadOrWriteObject(file);
		rOd.openFile(ReadOrWriteObject.FileWrite);
		for(int i =0;i<1000;i++)
			rOd.writeDouble(i);
		rOd.flush();
		rOd.closeFile();
		
		//"-----分割线-----"
		//读取Double数据
		double d =0 ;
		rOd.openFile(ReadOrWriteObject.FileRead);
		while(true){
			d = rOd.readDouble() ;
			if(d == Double.MIN_NORMAL){//读取文件的终止符,双精度最小值,在文件中已经关闭了相关的流
				break;
			}
			else{
				System.out.println(d);
			}
		}
		rOd.closeFile();
		rOd = null ;
	}
}

抱歉!评论已关闭.