当前位置: 移动技术网 > IT编程>数据库>其他数据库 > java中讲讲DataInputStream的用法,举例?

java中讲讲DataInputStream的用法,举例?

2019年08月16日  | 移动技术网IT编程  | 我要评论

[学习笔记]

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. */

文章转载自原文:

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网