精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

Java DataInputStream 類

java datainputstream 類

java 文件讀寫流

數據輸入流允許應用程序以與機器無關方式從底層輸入流中讀取基本 java 數據類型。

 

1. datainputstream 創建方式

下面的構造方法用來創建數據輸入流對象。

datainputstream dis = new datainputstream(inputstream in);

 

2. datainputstream 操作方法

序號 方法描述
1 public final int read(byte[] r, int off, int len)throws ioexception
從所包含的輸入流中將 len 個字節讀入一個字節數組中。如果len為-1,則返回已讀字節數。
2 public final int read(byte [] b)throws ioexception
從所包含的輸入流中讀取一定數量的字節,并將它們存儲到緩沖區數組 b 中。
3 public final boolean readbooolean()throws ioexception
從所包含的輸入流中讀取一個布爾型數據。
4 public final byte readbyte()throws ioexception
從所包含的輸入流中讀取一個字節數據。
5 public final short readshort()throws ioexception
從所包含的輸入流中讀取一個短整型數據。
6 public final int readint()throws ioexception
從所包含的輸入流中讀取一個整型數據。
7 public string readline() throws ioexception
從輸入流中讀取下一文本行。

 

3. datainputstream 范例

下面的例子演示了datainputstream和dataoutputstream的使用,該例從文本文件test.txt中讀取5行,并轉換成大寫字母,最后保存在另一個文件test1.txt中。

test.txt 文件內容如下:

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

java 文件讀寫流

下一節:java dataoutputstream 類

java語言 教程

相關文章