Java位元組流

高洛峰
發布: 2016-10-20 16:41:44
原創
1817 人瀏覽過

Java中的输入是指从数据源等读到Java程序中,这里的数据源可以是文件,内存或网络连接,输出则是指从Java程序中写到目的地。
输入输出流可以分为以下几种类型(暂时不考虑File类)

Java位元組流

Java IO共涉及40多个类,下图是字节流各个类之间的关系

Java位元組流

InputStream

InputStream的子类及其说明有如下所示

Java位元組流

OutputStream

OutputStream的子类及其说明有如下所示

Java位元組流

对于类中方法的熟悉不详述了,可以参照JDK文档,或者可以试着在IDE中,实例化上面的类,使用此类对象时,按下.之后,会出现提示框,再一个一个熟悉就好了。

简单示例

了解了常用的字节流类,下面以文件数据的输入输出说明以上类的使用。

1.在java程序中生成1~20的平方数,并输出到文件中。

package com.songpu;import java.io.BufferedOutputStream;import java.io.FileOutputStream;import java.io.IOException;import java.io.PrintStream;public class MyFileOutputStream {    
    public static void main (String[] args) throws IOException{        try{
        FileOutputStream fos = new FileOutputStream("F:\\test1.txt");
        BufferedOutputStream bos = new BufferedOutputStream(fos,1024);
        PrintStream ps = new PrintStream(bos,false);    
        System.setOut(ps);        for(int i= 0;i<20;i++){
            System.out.println(i*i);
        }
        ps.close();
        }catch(IOException e){
            e.printStackTrace();
        }
    }
    
}
登入後複製

2.将刚才生成的文件中的数据输入到程序,并将其打印到屏幕

package com.songpu;import java.io.*;public class MyFlieInputStream {    public static void main(String[] args) throws IOException {
        File file = new File("F:\\test1.txt");
        FileInputStream in = new FileInputStream(file);
        BufferedInputStream bis = new BufferedInputStream(in);        byte[] bytes = new byte[(int) file.length()];        
        do {
            bis.read(bytes);
            System.out.println(new String(bytes));

        }while (bis.read() != -1);
        in.close();
    
    }
}
登入後複製

再以序列化与反序列化的例子说明ObjectInputStream和ObjectOutputStream的使用

Java序列化是将对象变成二进制形式的一连串字符描述的过程,反序列化就是序列化的相反过程,把这些字符重建为对象。

序列化和反序列化的作用,是保存对象到文件或数据库中,使对象能够传输,序列化的要求是实现Serializable接口,代码如下所示

package com.songpu.serial;import java.io.FileInputStream;import java.io.FileOutputStream;import java.io.IOException;import java.io.ObjectInputStream;import java.io.ObjectOutputStream;import java.io.OutputStream;import java.io.Serializable;/*
 * 待序列化的类,实现序列化接口
 */class Person implements Serializable{    public String name;    public int age;    public Person(String name, int age) {        super();        this.name = name;        this.age = age;
    }    public String getName() {        return name;
    }    public void setName(String name) {        this.name = name;
    }    public int getAge() {        return age;
    }    public void setAge(int age) {        this.age = age;
    }
}/*
 * 测试类
 */public class SerialTest{    public static void main(String[]  args) throws IOException, ClassNotFoundException{
        ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("F:\\test.txt"));
        Person p0 = new Person("tangsong",21);
        oos.writeObject(p0);
        oos.flush();
        oos.close();
        deserial();
    }    
    public static void deserial() throws ClassNotFoundException, IOException{
        ObjectInputStream ois = new ObjectInputStream(new FileInputStream("F:\\test.txt"));
        Person p1 = (Person)ois.readObject();   
        ois.close();
        System.out.println("Name="+p1.getName()+";Age="+p1.getAge());
    }   
}
登入後複製

运行上述代码的结果如下:

Java位元組流

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!