服务热线:13616026886

技术文档 欢迎使用技术文档,我们为你提供从新手到专业开发者的所有资源,你也可以通过它日益精进

位置:首页 > 技术文档 > JAVA > 新手入门 > 基础入门 > 查看文档

java的基本数据类型与流

    使用java操作二进制文件和使用java操作文本文件两篇文章分别介绍了如何操作二进制文件和文本文件,事实上java中还有基于data的数据操作,这里的data指的是java的基本数据类型和string。基本数据类型包括byte、int、char、long、float、double、boolean和short。

    说到java的基本数据类型必须谈到的两个类是datainputstream和dataoutputstream。它们提供了对java基本数据类型的操作,但是这些方法事实上是在两个重要的接口中定义的datainput和dataoutput,它们的功能就是把二进制的字节流转换成java的基本数据类型,同时还提供了从数据中使用utf-8编码构建string的功能。有一个重要的类randomaccessfile实现了datainput和dataoutput两个接口使得他能够对文件同时进行写和读的操作。

    在datainputstream和dataoutputstream两个类中的方法都很简单,基本结构为readxxxx()和writexxxx()其中xxxx代表基本数据类型或者string。在这里不多讲述,不过值得一提的是我们有必要读读java中unicode的编码规则,在api doc中有比较详细的介绍。通常我们的对象有很多都是由java的基本数据类型构成的,比如一个人的信息包括姓名,电子信箱,电话号码和性别等。其实我们可以用datainputstream中的方法和dataoutputstream中的方法按照一定的序列把数据写入流中再按照相同的序列把他们读取出来,这就是我们自己实现的序列化,这可以用在数据传输中,比如在j2me联网程序中使用序列化机制传输数据。下面我们看看如何自己实现序列化,首先我们要有两个构造函数其中一个参数为空。
public account()
    {

    }

    public account(string username, string email, int age, boolean gender)
    {
        this.username = username;
        this.email = email;
        this.age = age;
        this.gender = gender;
    }
当我们进行序列化的时候也很简单,我们只是往dataoutputstream中按照顺序写入对象的成员变量。例如
public void serialize(dataoutputstream dos) throws ioexception
    {
        dos.writeutf(username);
        dos.writeutf(email);
        dos.writeint(age);
        dos.writeboolean(gender);
       
    }
当我们进行反序列化的时候则按照相同的顺序从datainputstream里面读取数据并赋值给成员变量。例如
    public static account deserialize(datainputstream dis) throws ioexception
    {
        account account = new account();
        account.username = dis.readutf();
        account.email = dis.readutf();
        account.age = dis.readint();
        account.gender = dis.readboolean();
      
        return account;
    }
为了便于调试我们还提供一个tostring()的方法打印出对象的实际信息。这是个好的习惯。
    public string tostring()
    {
        return "username = " + username + " email = " + email + " age = " + age
                + " gender = " + (gender ? "male" : "female");
    }

     为了测试序列化我们编写下面的程序进行测试,代码比较简单。

package com.j2medev.mingjava;

import java.io.*;


public class testdataio
{

    public static void main(string[] args) throws ioexception
    {
        account account = new account("mingjava","eric.zhan@263.net",25,true);
        system.out.println("before serialization.........");
        system.out.println(account.tostring());
        bytearrayoutputstream baos = new bytearrayoutputstream();
        dataoutputstream dos = new dataoutputstream(baos);
        account.serialize(dos);
        datainputstream dis = new datainputstream(new bytearrayinputstream(baos.tobytearray()));
        account saccount = account.deserialize(dis);
        system.out.println("after serialization..........");
        system.out.println(saccount.tostring());
        dos.close();
        dis.close();
    }
}

package com.j2medev.mingjava;

import java.io.*;

public class account
{
    private string username = "";
    private string email = "";
    private int age = 0;
    private boolean gender = false;

    public account()
    {

    }

    public account(string username, string email, int age, boolean gender)
    {
        this.username = username;
        this.email = email;
        this.age = age;
        this.gender = gender;
    }

    public void serialize(dataoutputstream dos) throws ioexception
    {
        dos.writeutf(username);
        dos.writeutf(email);
        dos.writeint(age);
        dos.writeboolean(gender);
       
    }

    public static account deserialize(datainputstream dis) throws ioexception
    {
        account account = new account();
        account.username = dis.readutf();
        account.email = dis.readutf();
        account.age = dis.readint();
        account.gender = dis.readboolean();
      
        return account;
    }

    public string tostring()
    {
        return "username = " + username + " email = " + email + " age = " + age
                + " gender = " + (gender ? "male" : "female");
    }
}
编译运行程序在控制台输出:
before serialization.........
username = mingjava email = eric.zhan@263.net age = 25 gender = male
after serialization..........
username = mingjava email = eric.zhan@263.net age = 25 gender = male
序列化成功,后面我将讲述如何在j2me联网中使用序列化机制。

扫描关注微信公众号