java中讲讲DataInputStream的用法,举例?
[学习笔记]
2.4 datainputstream的用法
马 克-to-win:datainputstream顾名思义:就是专门用来读各种各样的数据的,比如(int,char,long等),一定要注意 dataoutputstream 与datainputstream配合使用,而且二者读写的顺序要一样,可以参照下面的例子。
例:2.4.1
import java.io.*;
public class testmark_to_win {
/* when run this program, no need any data.dat file, because it can generate
the file.anyway,this file can not be recognized by humanbeing
*/
public static void main(string[] args) throws ioexception {
fileoutputstream fos = new fileoutputstream("c:/data.txt");
dataoutputstream dos = new dataoutputstream(fos);
dos.writeint(345);
dos.writedouble(4.54);
dos.writeutf("我们");
dos.close();
fileinputstream fis = new fileinputstream("c:/data.txt");
datainputstream dis = new datainputstream(fis);
/*1) a data output stream to write data that can later
be read by a data input stream. 2)note the sequence.first write what,
then read what. if you comment out the following statment,the result
is not correct, because the sequence is chaotic.i tried. 3) readint()
returns: the next four bytes of this input stream, interpreted as an
int. */
文章转载自原文:
推荐阅读
-
详解Java多线程编程中LockSupport类的线程阻塞用法
-
7.Java中indexOf的用法
-
Java中的构造方法this、super的用法详解
-
java中 instanceof 和 StringUtils.isEmpty(str)和String.StartsWith() 的作用以及用法
-
JAVA中的charAt()和toCharArray()的用法
-
java中hashCode方法与equals方法的用法总结
-
java中String的常见用法总结
-
Java中instanceof关键字的用法总结
-
java 中 ChannelHandler的用法详解
-
详解Java中super的几种用法并与this的区别