Java字节流:FileInputStream FileOutputStream

-----------------------------------------------------------------------------------

FileInputStream
类声明:public class FileInputStream extends InputStream
位于java.io包下
官方对其说明:
  A FileInputStream obtains input bytes from a file in a file system. What files are available depends on the host environment..
  (简单翻译:FileInputStream从文件系统中的某个文件中获得输入字节.)

构造方法

  FileInputStream(File file);

    通过打开一个到实际文件的连接来创建一个FileInputStream实例,该文件通过文件系统中的File对象file指定。

  FileInputStream(String name);
    通过打开一个到实际文件的连接来创建一个FileInputStream实例,该文件通过文件系统中的路径名name指定。

  FileInputStream(FileDescriptor fdObj);
    通过使用文件描述符fdObj创建一个FileInputStream实例。

主要方法:

  - int available(): 返回字节文件输入流中可读取的字节数
  - void close(): 关闭此文件输入流并释放与该流有关的系统资源.
  - protected void finalize(): 确保在不再引用文件输入流时调用其close()方法.
  - int read(): 从文件输入流中读取一个字节数据
  - int read(byte[] b): 从文件输入流中将最多b.length个字节数据读入到字节数组b中
  - int read(byte[] b,int off,int len): 从文件输入流中将最多len个字节的数据读入到字节数组b中
  - long skip(long n): 从文件输入流中跳过并丢弃n个字节的数据

查看源代码
  FileInputStream这个类的作用就是把文件中的内容读取到程序中去,其中最关键的就是三个read方法,其源码都是通过调用native方法来实现的。

 public native int read() throws IOException;
public int read(byte b[]) throws IOException {
return readBytes(b, 0, b.length);
}
public int read(byte b[], int off, int len) throws IOException {
return readBytes(b, off, len);
}
private native int readBytes(byte b[], int off, int len) throws IOException;
public native long skip(long n) throws IOException;
public native int available() throws IOException;

------------------------------------------------------------------------------------------------------------------

FileOutputStream
类声明:public class FileOutputStream extends OutputStream
位于java.io包下
官方对其说明:
  A file output stream is an output stream for writing data to a File or to a FileDescriptor.
  (简单翻译:FileOutputStream文件输出流失用于将数据写入File或者FileDescriptor的输出流.)

构造方法:
  FileOutputStream(File file);
    创建一个向指定File对象表示的文件中写入数据的文件输出流。

  FileOutputStream(File file,boolean append);
    创建一个向指定File对象表示的文件中写入数据的文件输出流。

  FileOutputStream(String name);
    创建一个向具有指定名称的文件中写入数据的输出文件流。

  FileOutputStream(String name,boolean append);
    创建一个向具有指定name的文件中写入数据的输出文件流。

  FileOutputStream(FileDescriptor fdObj);
    通过使用文件描述符fdObj创建一个FileOutputStream实例。

主要方法:
  - void close(): 关闭此文件输出流并释放与该流有关的系统资源.
  - protected void finalize(): 清理文件的链接,确保在不再引用文件输出流时调用其close()方法.
  - void write(byte[] b): 将b.length个字节从指定的字节数组b写入此文件输出流。
  - void write(byte[] b,int off,int len): 将指定的字节数组b从偏移量off开始的len个字节写入此文件输出流。
  - void write(int b): 将指定的字节写入此文件输出流

查看源代码:
  FileOutputStream这个类的作用就是把程序中的字节数据写入到指定的文件中,其中最关键的就是三个write方法,其源码都是通过调用native方法来实现的。

 private native void write(int b, boolean append) throws IOException;
public void write(int b) throws IOException {
write(b, append);
}
private native void writeBytes(byte b[], int off, int len, boolean append) throws IOException;
public void write(byte b[]) throws IOException {
writeBytes(b, 0, b.length, append);
}
public void write(byte b[], int off, int len) throws IOException {
writeBytes(b, off, len, append);
}

FileInputStream和FileOutputStream举例: 实现文件的复制.

fileIn.txt文件中的内容:
  abcdefgheretrtrt

 import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException; public class FileInputOutputStreamDemo { public static void main(String[] args) throws IOException {
//目标文件
File file = new File("fileIn.txt");
//创建FileInputStream实例,该文件通过文件系统中的File对象file指定
FileInputStream fis = new FileInputStream(file); byte[] fileInput = new byte[1024];
int count = 0;
int bytes = fis.read();
//循环将文件fileText.txt中的内容读取到字节数组fileInput中
while(bytes != -1){
fileInput[count++] = (byte)bytes;
bytes = fis.read();
} //输出文件
File fileOutput = new File("fileOut.txt");
if(!fileOutput.exists()){
fileOutput.createNewFile();
}
//创建文件输出流对象
FileOutputStream fos = new FileOutputStream(fileOutput);
//将字节数组fileInput中的内容输出到文件fileOut.txt中
fos.write(fileInput);
}
}
上一篇:SQLServer数据库,表内存,实例名分析SQL语句


下一篇:用户登录之cookie信息安全一二事