Java DataInputStream 類
java datainputstream 類
數(shù)據(jù)輸入流允許應用程序以與機器無關方式從底層輸入流中讀取基本 java 數(shù)據(jù)類型。
1. datainputstream 創(chuàng)建方式
下面的構造方法用來創(chuàng)建數(shù)據(jù)輸入流對象。
datainputstream dis = new datainputstream(inputstream in);
2. datainputstream 操作方法
序號 | 方法描述 |
---|---|
1 | public final int read(byte[] r, int off, int len)throws ioexception 從所包含的輸入流中將 len 個字節(jié)讀入一個字節(jié)數(shù)組中。如果len為-1,則返回已讀字節(jié)數(shù)。 |
2 | public final int read(byte [] b)throws ioexception 從所包含的輸入流中讀取一定數(shù)量的字節(jié),并將它們存儲到緩沖區(qū)數(shù)組 b 中。 |
3 | public final boolean readbooolean()throws ioexception 從所包含的輸入流中讀取一個布爾型數(shù)據(jù)。 |
4 | public final byte readbyte()throws ioexception 從所包含的輸入流中讀取一個字節(jié)數(shù)據(jù)。 |
5 | public final short readshort()throws ioexception 從所包含的輸入流中讀取一個短整型數(shù)據(jù)。 |
6 | public final int readint()throws ioexception 從所包含的輸入流中讀取一個整型數(shù)據(jù)。 |
7 | public string readline() throws ioexception 從輸入流中讀取下一文本行。 |
3. datainputstream 范例
下面的例子演示了datainputstream和dataoutputstream的使用,該例從文本文件test.txt中讀取5行,并轉換成大寫字母,最后保存在另一個文件test1.txt中。
test.txt 文件內(nèi)容如下:
yapf1 yapf2 yapf3 yapf4 yapf5
import java.io.*; public class test{ public static void main(string args[])throws ioexception{ datainputstream in = new datainputstream(new fileinputstream("test.txt")); dataoutputstream out = new dataoutputstream(new fileoutputstream("test1.txt")); bufferedreader d = new bufferedreader(new inputstreamreader(in)); string count; while((count = d.readline()) != null){ string u = count.touppercase(); system.out.println(u); out.writebytes(u + " ,"); } d.close(); out.close(); } }
以上實例編譯運行結果如下:
yapf1 yapf2 yapf3 yapf4 yapf5