程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> Java中基本數據類型與流

Java中基本數據類型與流

編輯:關於JSP
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","[email protected]",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 = [email protected] age = 25 gender = male
  after serialization..........
  UserName = mingjava Email = [email protected] age = 25 gender = male

  序列化成功,後面我將講述如何在J2ME聯網中使用序列化機制。
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved