Java.io.LineNumberInputStream.read()方法實例
java.io.LineNumberInputStream.read() 讀取當前輸入流數據的下一個字節。該字節值則返回爲0至255範圍內的整數,如果流的末尾已到達,該方法返回-1。
聲明
以下是java.io.LineNumberInputStream.read()方法的聲明:
public int read()
參數
- NA
返回值
該方法返回下一個數據字節,或如果達到此流的末尾則返回-1。
異常
- IOException -- 如果發生I/ O錯誤
例子
下面的示例演示java.io.LineNumberInputStream.read()方法的用法。
package com.yiibai; import java.io.FileInputStream; import java.io.IOException; import java.io.LineNumberInputStream; public class LineNumberInputStreamDemo { public static void main(String[] args) throws IOException { LineNumberInputStream lnis = null; FileInputStream fis =null; int i; char c; try{ // create new input stream fis = new FileInputStream("C:/test.txt"); lnis = new LineNumberInputStream(fis); // read till the end of the file while((i=lnis.read())!=-1) { // converts int to char c=(char)i; // prints System.out.print(c); } }catch(Exception e){ // if any error occurs e.printStackTrace(); }finally{ // closes the stream and releases any system resources if(fis!=null) fis.close(); if(lnis!=null) lnis.close(); } } }
假設我們有一個文本文件c:/ test.txt,它具有以下內容。該文件將被用作輸入到我們的示例程序:
ABCDE
FGHIJ
KLMNO
PQRST
UVWXY
z
讓我們編譯和運行上面的程序,這將產生以下結果:
ABCDE
FGHIJ
KLMNO
PQRST
UVWXY
z