大雀软件园

首页 软件下载 安卓市场 苹果市场 电脑游戏 安卓游戏 文章资讯 驱动下载
技术开发 网页设计 图形图象 数据库 网络媒体 网络安全 站长CLUB 操作系统 媒体动画 安卓相关
当前位置: 首页 -> 技术开发 -> JSP专区 -> Java中基本数据类型与流

Java中基本数据类型与流

时间: 2021-07-31 作者:daque

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联网中运用序列化体制。

热门阅览

最新排行

Copyright © 2019-2021 大雀软件园(www.daque.cn) All Rights Reserved.