Java DataInputStream 類
java datainputstream 類
數(shù)據(jù)輸入流允許應(yīng)用程序以與機(jī)器無(wú)關(guān)方式從底層輸入流中讀取基本 java 數(shù)據(jù)類型。
1. datainputstream 創(chuàng)建方式
下面的構(gòu)造方法用來(lái)創(chuàng)建數(shù)據(jù)輸入流對(duì)象。
datainputstream dis = new datainputstream(inputstream in);
2. datainputstream 操作方法
序號(hào) | 方法描述 |
---|---|
1 | public final int read(byte[] r, int off, int len)throws ioexception 從所包含的輸入流中將 len 個(gè)字節(jié)讀入一個(gè)字節(jié)數(shù)組中。如果len為-1,則返回已讀字節(jié)數(shù)。 |
2 | public final int read(byte [] b)throws ioexception 從所包含的輸入流中讀取一定數(shù)量的字節(jié),并將它們存儲(chǔ)到緩沖區(qū)數(shù)組 b 中。 |
3 | public final boolean readbooolean()throws ioexception 從所包含的輸入流中讀取一個(gè)布爾型數(shù)據(jù)。 |
4 | public final byte readbyte()throws ioexception 從所包含的輸入流中讀取一個(gè)字節(jié)數(shù)據(jù)。 |
5 | public final short readshort()throws ioexception 從所包含的輸入流中讀取一個(gè)短整型數(shù)據(jù)。 |
6 | public final int readint()throws ioexception 從所包含的輸入流中讀取一個(gè)整型數(shù)據(jù)。 |
7 | public string readline() throws ioexception 從輸入流中讀取下一文本行。 |
3. datainputstream 范例
下面的例子演示了datainputstream和dataoutputstream的使用,該例從文本文件test.txt中讀取5行,并轉(zhuǎn)換成大寫(xiě)字母,最后保存在另一個(gè)文件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(); } }
以上實(shí)例編譯運(yùn)行結(jié)果如下:
yapf1 yapf2 yapf3 yapf4 yapf5