Java I/O 教程(四) FileInputStream 類
Java FileInputStream class 從一個檔案讀取位元組資料。
用於從影象,音訊,視訊等檔案中讀取位元組型別資料。
Creates a FileInputStream by opening a connection to an actual file, the file named by the File object file in the file system
FileInputStream(String name)
Creates a FileInputStream by opening a connection to an actual file, the file named by the path name name in the file system.
int read() 從輸入流讀取位元組
int read(byte[] b) 從輸入流讀取b.length長度的位元組
int read(byte[] b, int off, int len) 從輸入流每次讀取b.length長度的位元組
void close() 關閉檔案輸入流
用於從影象,音訊,視訊等檔案中讀取位元組型別資料。
類定義
public class FileInputStream extends InputStream
常用建構函式
FileInputStream(File file)Creates a FileInputStream by opening a connection to an actual file, the file named by the File object file in the file system
FileInputStream(String name)
Creates a FileInputStream by opening a connection to an actual file, the file named by the path name name in the file system.
常用方法
int available() 返回輸入流中可讀取的位元組大小int read() 從輸入流讀取位元組
int read(byte[] b) 從輸入流讀取b.length長度的位元組
int read(byte[] b, int off, int len) 從輸入流每次讀取b.length長度的位元組
void close() 關閉檔案輸入流
例子1
package com.dylan.io;
import java.io.FileInputStream;
/**
* @author xusucheng
* @create 2017-12-31
**/
public class FileInputStreamReadAllChars {
public static void main(String[] args) {
try {
FileInputStream fin = new FileInputStream("d:\\testout.txt");
int i=0;
while ((i=fin.read())!=-1){
System.out.print((char) i);
}
fin.close();
} catch (java.io.IOException e) {
e.printStackTrace();
}
}
}
測試效果截圖
下一章:
Java I/O 教程(五) BufferedOutputStream 類
相關文章
- Java I/O 教程(五) BufferedOutputStream 類Java
- Java I/O 教程(六) BufferedInputStream 類Java
- Java I/O 教程(三) FileOutputStream類Java
- Java™ 教程(命令列I/O)Java命令列
- Java I/O 教程(一) 介紹Java
- Java I/O 教程(十) ObjectOutputStream和ObjectInputStreamJavaObject
- Java I/O 教程(七) DataOutputStream和DataInputStreamJavaAI
- java入門 -- Java I/O(四) 異常處理Java
- Java I/OJava
- Java I/O 教程(八) Writer和ReaderJava
- Java I/O 教程(九) FileWriter和FileReaderJava
- Java I/O 教程(二) 介紹OutputStream 和 InputStreamJava
- Java(8)I/OJava
- 【java】I/O流Java
- Java I/O流Java
- java的I/OJava
- “挑三揀四”地學一學Java I/OJava
- Python教程:精簡概述I/O模型與I/O操作Python模型
- Java 非同步 I/OJava非同步
- JAVA I/O系統Java
- Java基礎——I/O流Java
- java 淺析I/O模型Java模型
- 深入理解Java I/O模型Java模型
- "萬字" Java I/O 詳解Java
- Java I/O 模型的演進Java模型
- Java NIO:淺析I/O模型Java模型
- Java基礎I/O流型別Java型別
- Veritas Quick I/O and Cached Quick I/OUI
- Linux之《荒島餘生》(四)I/O篇Linux
- java 關於fileinputstream的使用Java
- Java I/O模型及其底層原理Java模型
- Java學習筆記之I/OJava筆記
- Java入門學習-理解I/OJava
- Java NIO1:I/O模型概述Java模型
- Java I/O流模型概念分析整理Java模型
- 《Java 高階篇》六:I/O 流Java
- 【Java I/O】如何用Java讀寫檔案Java
- 計算機I/O與I/O模型計算機模型