`

转------Java IO学习笔记

    博客分类:
  • java
阅读更多
[size=medium][size=medium]http://blog.csdn.net/rokii/archive/2008/12/24/3596032.aspx
文件对象的生成和文件的创建

/*
* ProcessFileName.java
*
* Created on 2006年8月22日, 下午3:10
*
* 文件对象的生成和文件的创建
*/
package study.iostudy;
import java.io.*;
public class GenerateFile
{
    public static void main(String[] args)
    {
        File dirObject = new File("d:\\mydir");
        File fileObject1 = new File("oneFirst.txt");
        File fileObject2 = new File("d:\\mydir", "firstFile.txt");
        System.out.println(fileObject2);
        try
        {
            dirObject.mkdir();
        }catch(SecurityException e)
        {
            e.printStackTrace();
        }
        try
        {
            fileObject2.createNewFile();
            fileObject1.createNewFile();
        }catch(IOException e)
        {
            e.printStackTrace();
        }
    }
}

文件名的处理
/*
* ProcessFileName.java
*
* Created on 2006年8月22日, 下午3:29
*
* 文件名的处理
*/
package study.iostudy;
import java.io.*;
/*
* 文件名的处理
* String getName(); 获得文件的名称,不包含文件所在的路径。
* String getPath(); 获得文件的路径。
* String getAbsolutePath(); 获得文件的绝对路径。
* String getParent(); 获得文件的上一级目录的名称。
* String renameTo(File newName); 按参数中给定的完整路径更改当前的文件名。
* int compareTo(File pathName); 按照字典顺序比较两个文件对象的路径。
* boolean isAbsolute(); 测试文件对象的路径是不是绝对路径。
*/
public class ProcesserFileName
{  
    public static void main(String[] args)
    {
        File fileObject1 = new File("d:\\mydir\\firstFile.txt");
        File fileObject2 = new File("d:\\firstFile.txt");
        boolean pathAbsolute = fileObject1.isAbsolute();
        System.out.println("* * * * * * * * * * * * * * * * * * * * * * * * ");
        System.out.println("There are some information of fileObject1's file name:");
        System.out.println("fileObject1: " + fileObject1); 
        System.out.println("fileObject2: " + fileObject2);
        System.out.println("file name: " + fileObject1.getName());
        System.out.println("file path: " + fileObject1.getPath());
        System.out.println("file absolute path: " + fileObject1.getAbsolutePath());
        System.out.println("file's parent directory: " + fileObject1.getParent());
        System.out.println("file's absoulte path: " + pathAbsolute);
        int sameName = fileObject1.compareTo(fileObject2);
        System.out.println("fileObject1 compare to fileObject2: " + sameName);
        fileObject1.renameTo(fileObject2);
        System.out.println("file's new name: " + fileObject1.getName());
    }
}

测试和设置文件属性
/*
* SetterFileAttribute.java
*
* Created on 2006年8月22日, 下午3:51
*
* 测试和设置文件属性
*/
package study.iostudy;
import java.io.*;
public class SetterFileAttribute
{
    /*
     * File类中提供的有关文件属性测试方面的方法有以下几种:
     * boolean exists(); 测试当前文件对象指示的文件是否存在。
     * boolean isFile(); 测试当前文件对象是不是文件。
     * boolean isDirectory(); 测试当前文件对象是不是目录。
     * boolean canRead(); 测试当前文件对象是否可读。
     * boolean canWrite(); 测试当前文件对象是否可写。
     * boolean setReadOnly(); 将当前文件对象设置为只读。
     * long length(); 获得当前文件对象的长度。
     */
    public static void main(String[] args)
    {
        File dirObject = new File("d:\\mydir");
        File fileObject = new File("d:\\mydir\\firstFile.txt");
        try
        {
            dirObject.mkdir();
            fileObject.createNewFile();
        }catch(IOException e)
        {
            e.printStackTrace();
        }
        System.out.println("* * * * * * * * * * * * * * * * * * * * * * * * ");
        System.out.println("there are some information about property of file object:");
        System.out.println("file object : " + fileObject);
        System.out.println("file exist? " + fileObject.exists());
        System.out.println("Is a file? " + fileObject.isFile());
        System.out.println("Is a directory?" + fileObject.isDirectory());
        System.out.println("Can read this file? " + fileObject.canRead());
        System.out.println("Can write this fie? " + fileObject.canWrite());
        long fileLen = fileObject.length();
        System.out.println("file length: " +fileLen);
        boolean fileRead = fileObject.setReadOnly();
        System.out.println(fileRead);
        System.out.println("Can read this file? " + fileObject.canRead());
        System.out.println("Can write this fie? " + fileObject.canWrite());
        System.out.println("* * * * * * * * * * * * * * * * * * * * * * * * ");
    }
}

文件操作方法
/*
* FileOperation.java
*
* Created on 2006年8月22日, 下午4:25
*
* 文件操作方法
*/

package study.iostudy;
import java.io.*;
/*
* 有关文件操作方面的方法有如下几种:
* boolean createNewFile(); 根据当前的文件对象创建一个新的文件。
* boolean mkdir(); 根据当前的文件对象生成一目录,也就是指定路径下的文件夹。
* boolean mkdirs(); 也是根据当前的文件对象生成一个目录,
*                   不同的地方在于该方法即使创建目录失败,
*                   也会成功参数中指定的所有父目录。
* boolean delete(); 删除当前的文件。
* void deleteOnExit(); 当前Java虚拟机终止时删除当前的文件。
* String list(); 列出当前目录下的文件。
*/
public class FileOperation
{
    public static void main(String[] args)
    {
        File fileObject = new File("d:\\mydir", "firstFile.txt");
        File dirObject1 = new File("d:\\mydir\\01");
        File dirObject2 = new File("d:\\mydir\\02");
        File dirObject3 = new File("d:\\mydir");
        System.out.println("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~");
        System.out.println("file object: " + fileObject);
        System.out.println("dir object 1: " + dirObject1);
        System.out.println("dir object 2" + dirObject2);
        try
        {
            dirObject1.mkdir();
            dirObject2.mkdirs();
        }catch(SecurityException e)
        {
            e.printStackTrace();
        }
        try
        {
            fileObject.createNewFile();
        }catch(IOException e)
        {
            e.printStackTrace();
        }
        String[] files = dirObject2.list();
        for (int i = 0; i < files.length; i++)
        {
            System.out.println("list files in myhdir: " + files[i]);
        }
        System.out.println("dir object 1 exist? " + dirObject1.exists());
        System.out.println("dir object 2 exist? " + dirObject2.exists());
        boolean dir1Del = dirObject1.delete();
        dirObject2.deleteOnExit();
        System.out.println("dir object 1 exist? " + dirObject1.exists());
        System.out.println("dir object 2 exist? " + dirObject2.exists());
    }
}

找出一个目录下所有的文件
/*
* SearchFile.java
*
* Created on 2006年8月22日, 下午4:45
*
* 找出一个目录下所有的文件
*/
package study.iostudy;
import java.io.*;
public class SearchFile
{
    public static void main(String[] args)
    {
        File dirObject = new File("D:\\aa");
        Filter1 filterObj1 = new Filter1("HTML");
        Filter2 filterObj2 = new Filter2("Applet");
        System.out.println("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~");
        System.out.println("list HTML files in directory: " + dirObject);
        String[] filesObj1 = dirObject.list(filterObj1);
        for (int i = 0; i < filesObj1.length; i++)
        {
            File fileObject = new File(dirObject, filesObj1[i]);
            System.out.println(((fileObject.isFile())
                ? "HTML file: " : "sub directory: ") + fileObject);
        }
        System.out.println("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~");
        String[] filesObj2 = dirObject.list(filterObj2);
        for (int i = 0; i < filesObj2.length; i++)
        {
            File fileObject = new File(dirObject, filesObj2[i]);
            System.out.println(((fileObject.isFile())
                ? "htm file: " : "sub directory: ") + fileObject);
        }
    }
}

class Filter1 implements FilenameFilter
{
   String fileExtent;
    Filter1(String extentObj)
    {
        fileExtent = extentObj;
    }

    public boolean accept(File dir, String name)
    {
        return name.endsWith("." + fileExtent);
    }
}

class Filter2 implements FilenameFilter
{
    String fileName;
    Filter2(String fileName)
    {
        this.fileName = fileName;
    }

    public boolean accept(File dir, String name)
    {
        return name.startsWith(fileName + ".");
    }
}

文件内容的拷贝(任意文件)
/*
* CopyFileContent.java
*
* Created on 2006年8月22日, 下午5:37
*
* 文件内容的拷贝(任意文件)
*/

package study.iostudy;
import java.io.*;
public class CopyFileContent
{
    static void copyContent(FileInputStream inObj, FileOutputStream outObj)
   {
        int copyLen;
        byte[] copyBuf = new byte[1024];
        try
        {
            while ((copyLen = inObj.read(copyBuf, 0, 1024)) != -1)
            {
                String copyStr = new String(copyBuf);
                System.out.println(copyStr);
                outObj.write(copyBuf, 0, copyLen);
            }
        }catch(IOException e)
        {
            System.out.println("error: " + e);
        }
    }
  
    public static void main(String[] args)
    {
        String secondFileName = "d:\\mydir\\secondFile.wmv";
        String thirdFileName = "d:\\mydir\\thirdFile.wmv";
        File fileObject = new File(thirdFileName);
        FileInputStream inStream;
        FileOutputStream outStream;
        try
        {
            fileObject.createNewFile();
            inStream = new FileInputStream(secondFileName);
            outStream = new FileOutputStream(thirdFileName);
            copyContent(inStream, outStream);
        }catch(FileNotFoundException e)
        {
            e.printStackTrace();
        }catch(IOException e)
        {
            e.printStackTrace();
        }
      
    }
}

文件随机访问
/*
* RandomFile.java
*
* Created on 2006年8月22日, 下午9:47
*
* 文件随机访问
*/
package study.iostudy;
import java.io.*;
/*
* 文件随机访问的方法
*
* void seek(long pos); 将文件指针移动到参数指定的位置。
* long getFilePointer(); 得到当前文件指针的位置。
* int skipBytes(int n); 将文件指针向前移动参数指定的n个字节。
* String readLine(); 从当前文件指定位置读取一行。
*
*/
public class RandomFile
{
    public static void main(String[] args)
    {
        String tempStr;
        int fileLines = 0;
        long pointerLast = 0;
        try
        {
            RandomAccessFile inObj = new RandomAccessFile("d:\\mydir\\secondFile.txt", "rw");
            while (inObj.readLine() != null)
                fileLines++;
            for (int i =0; i < fileLines / 2; i++)
            {
                inObj.seek(2 * i);
                tempStr = inObj.readLine();
                System.out.println(tempStr);
            }
            pointerLast = inObj.getFilePointer();
        }catch(IOException e)
        {
            e.printStackTrace();
        }
        try
        {
            RandomAccessFile fileObj = new RandomAccessFile("d:\\mydir\\secondFile.txt", "rw");
            String writeStr = new String("Insert a string!");
            fileObj.seek(pointerLast);
            fileObj.writeChars(writeStr);
        }catch(IOException e)
        {
            e.printStackTrace();
        }
    }
}

字符流处理
/*
* ProcesserCharacterStream.java
*
* Created on 2008年12月24日, 上午8:02
*
* 字符流处理
*
* java.io包中加入了专门用于字符流处理的类,这些类都是Reader和Writer类的子类,
* Reader和Writer是两个抽象类,只提供了一系列用于字符流处理的接口,不能生成这
* 两个类的实例。
* java.io包中用于字符流处理的最基本的类是InputStreamReader和OutputStreamWriter,
* 用来在字节流和字符流之间作为中介。
*
* 下面是InputStreamReader类和OutputStreamWriter类的常用方法:
*
* public InputStreamReader(InputStream in)
* 根据当前平台缺省的编码规范,基于字节流in生成一个输入字符流。
* public InputStreamReader(InputStream in, String sysCode)throws UnSupportedEncodingException
* 按照参数sysCode指定的编码规范,基于字节流in构造输入字符流,如果不支持参数sysCode中指定的编码规范,就会产生异常。
* public OutputStreamWriter(OutputStream out)
* 根据当前平台缺省的编码规范,基于字节流out生成一个输入字符流。
* public OutputStreamWriter(OutputStream out, String sysCode) throws UnsupportedEncodingException
* 按照参数sysCode指定的编码规范,基于字节流out构造输入字符流,如果不支持参数sysCode中指定的编码规范,就会产生异常。
* public String getEncoding()
* 获得当前字符流使用的编码方式。
* public void close() throws IOException
* 用于关闭流。
* public int read() throws IOException
* 用于读取一个字符。
* public int read(char[] cbuf, int off, int len)
* 用于读取len个字符到数组cbuf的索引off处。
* public void write(char[] cbuf, int off, int len) throws IOException
* 将字符数组cbuf中从索引off处开始的len个字符写入输出流。
* public void write(int c) throws IOException
* 将单个字符写入输入流。
* public void write(String str, int off, int len) throws IOException
* 将字符串str中从索引off位置开始的ltn个字符写入输出流。
*
* 此外,为了提高字符流处理的效率,在Java语言中,引入了BufferedReader和BufferWriter类,这两个类对字符流进行块处理。
* 两个类的常用方法如下:
* public BufferedReader(Reader in)
* 用于基于普通字符输入流in生成相应的缓冲流。
* public BufferedReader(Reader in, int bufSize)
* 用于基于普通字符输入流in生成相应的缓冲流,缓冲区大小为参数bufSize指定。
* public BufferedWriter(Writer out)
* 用于基于普通字符输入流out生成相应的缓冲流。
* public BufferedWriter(Writer out, int bufSize)
* 用于基于普通字符输入流out生在相应缓冲流,缓冲流大小为参数bufSize指定。
* public String readLine() throws IOException
* 用于从输入流中读取一行字符。
* public void newLine() throws IOException
* 用于向字符输入流中写入一行结束标记,值得注意的是,该标记不是简单的换行符"\n",而是系统定义的属性line.separator。
*/
package study.iostudy;
import java.io.*;
public class ProcesserCharacterStream
{
    public static void main(String[] args)
            throws FileNotFoundException, IOException
    {
        String lineStr;
        FileInputStream fileInStream;
        InputStreamReader inputReader;
        BufferedReader bufReader;
        FileOutputStream fileOutStream;
        OutputStreamWriter outputWriter;
        BufferedWriter bufWriter;
        fileInStream = new FileInputStream("d:\\mydir\\secondFile.txt");
        inputReader = new InputStreamReader(fileInStream);
        bufReader = new BufferedReader(inputReader);
        System.out.println("------------------------------------------------");
        System.out.println("There are file content before modify:");
        while ((lineStr = bufReader.readLine()) != null)
            System.out.println(lineStr);
        bufReader.close();
        inputReader.close();
        fileInStream.close();
        fileOutStream = new FileOutputStream("d:\\mydir\\secondFile.txt");
        outputWriter = new OutputStreamWriter(fileOutStream);
        bufWriter = new BufferedWriter(outputWriter);
        String newStr = new String("Modify the file ! \r\nThis is a nice thing. \r\nWe can write anything.");
        bufWriter.write(newStr, 0, newStr.length());
        System.out.println(newStr);
        bufWriter.close();
        outputWriter.close();
        fileOutStream.close();
        fileInStream = new FileInputStream("d:\\mydir\\secondFile.txt");
        inputReader = new InputStreamReader(fileInStream);
        bufReader = new BufferedReader(inputReader);
        System.out.println("------------------------------------------------");
        System.out.println("There are file content after modify:");
        while ((lineStr = bufReader.readLine()) != null)
            System.out.println(lineStr);
        bufReader.close();
        inputReader.close();
        fileInStream.close();
    }
}

接收键盘输入数据
/*
* OutputKeyPress.java
*
* Created on 2006年8月23日, 上午9:27
*
* 接收键盘输入数据
*/
package study.iostudy;
import java.io.*;
public class OutputKeyPress
{
    public static void main(String[] args)
    {
        System.out.println("This is a example about acceptance of keyboard.");
        String tempStr = "0";
        try
        {
            InputStreamReader inputReader;
            BufferedReader bufReader;
            inputReader = new InputStreamReader(System.in);
            bufReader = new BufferedReader(inputReader);
            tempStr = bufReader.readLine();
            System.out.println("Input num is: " + tempStr);
        }catch(IOException e)
        {
            e.printStackTrace();
        }
        int n = Integer.parseInt(tempStr);
        int nultiNum = 1;
        for (int i =1; i <= n; i++)
        {
            nultiNum *= i;
        }
        System.out.println("multiply of input number is: " + nultiNum);
    }  
}

过滤流
/*
* FilterStream.java
*
* Created on 2006年8月23日, 上午9:40
*
* 过滤流
*
* 过滤流在读/写数据的同时可以对数据进行处理,并提供了同步机制,
* 这样在同一时刻只有一个线程可以访问一个I/O流。在java.io包中,
* FilterInputStream和FilterOutputStream类是所有过滤输入流和
* 输出流的父类,它们是抽象类,本身不能生成任何实例,在这两上类
* 之下,分别实现了几物特殊的过滤输入流和输出流,利用这些特殊输
* 入流和输出流的实例可以进行流处理。
*
* 下面介绍几个过滤输入流和输出流的子类:
*
* BufferedInputStream 和 BufferedOutputStream
* 这两个类实现了带缓冲的过滤流,将任意的输入流和输出流绑定到缓
* 冲流上就会提高性能。
* 对于BufferedInputStream类,当系统读取数据时,数据按块读入缓
* 冲区,随后读操作直接访问缓冲区。使用BufferedOutputStream进行
* 输出时,数据首先写入缓冲区,当缓冲区满时,缓冲区中的数据写入
* 连接的输出流,BufferedOutputStream类提供的方法flush()可以强
* 制将缓冲区的内容全部写入输出流。
*
* DataInputStream 和 DataOutputStream
* 这两个类不仅能读写数据流,而且能读写各种各样的Java语言本身固
* 有的数据类型,如int、float等。
*
* PushbackInputStream
* PushbackInputStream类提供了方法将刚读过的字节退回到输入流中,
* 后面的内容就可以用到该字节。
*/

package study.iostudy;
import java.io.*;
public class FilterStream
{
    public static void main(String[] args)
    {
        try
        {
            FileInputStream inStream;
            FileOutputStream outStream;
            BufferedInputStream bufInObj;
            BufferedOutputStream bufOutObj;
            DataInputStream dataInObj;
            PushbackInputStream pushObj;
            byte[] tempBuf = new byte[1024];
            int copyLen;
            inStream = new FileInputStream("d:\\mydir\\secondFile.txt");
            outStream = new FileOutputStream("d:\\mydir\\thirdFile.txt");
            bufInObj = new BufferedInputStream(inStream);
            bufOutObj = new BufferedOutputStream(outStream);
            dataInObj = new DataInputStream(inStream);
            System.out.println(dataInObj.readBoolean());
            while ((copyLen = bufInObj.read(tempBuf, 0, 1024)) != -1)
            {
                String copyStr = new String(tempBuf);
                System.out.println(copyStr);
                bufOutObj.write(tempBuf, 0, copyLen);
                bufOutObj.flush();
            }
            int pushData;
            byte[] pushByte = {'o', 'k'};
            pushObj = new PushbackInputStream(
                    new FileInputStream("d:\\mydir\\thirdFile.txt"), 1000);
            while ((pushData = pushObj.read()) != -1)
            {
                if (Character.isLetter((char)pushData))
                {
                    System.out.print((char)pushData);
                }
                else
                {
                    System.out.println();
                    pushObj.unread(pushByte);
                }
            }
        }catch(FileNotFoundException e)
        {
            System.out.println("File not found or persission denied.");
        }catch(IOException e)
        {
            System.out.println("error:" + e);
        }
    }
    /*
     * 在上面的程序中,我们首先声明了FileInputStream类对象inStream和
     * FileOutputStream类的对象outStream,接着声明了BufferInputStream
     * 类对象bufObj、BufferedOutputStream类对象bufOutObj、
     * DataInputStream类对象dataInObj以及PushbackInputStream类对象pushObj,
     * 在try代码块中对上面这些对象进行初始化,程序的目的是通过BufferedInputStream
     * 类对象bufInObj和BufferedOutputStream类对象bufOutObj将secondFile.txt
     * 文件中内容输出到屏幕,并将该文件的内容写入thirdFile.txt文件中,值得注意的是,
     * 将secondFile.txt文件中的内容输出之前,程序中使用
     * "System.out.println(dataInObj.readBoolean());" 语句根据readBoolean()结果
     * 输出了true,而secondFile.txt文件开始内容为“Modify”,和一个字符为M,
     * 因此输出的文件内容没有“M”字符,thirdFile.txt文件中也比secondFile.txt
     * 文件少第一个字符“M”。随后,通过PushbackInputStream类对象pushObj读取
     * thirdFile.txt文件中的内容,输出读到的字符,当读到的不是字符,输出回车,将字符
     * 数组pushByte写回到thirdFile.txt文件中,也就是“ok”写回文件中。
     */

}

字节流

一、InputStream的API

1、public int read()
从输入流读取下一个数据字节。返回 0 到 255 范围内的 int 字节值。如果因已到达流末尾而没有可用的字节,则返回值 -1。

2、public int read(byte[] b)
从输入流中读取一定数量的字节并将其存储在缓冲区数组 b 中。以整数形式返回实际读取的字节数。如果因为流位于文件末尾而没有可用的字节,则返回值 -1;否则,至少可以读取一个字节并将其存储在 b 中。此方法等同于read(b, 0, b.length)

3、public int read(byte[] b, int off, int len)
将输入流中最多 len 个数据字节读入字节数组。尝试读取多达 len 字节,但可能读取较少数量。以整数形式返回实际读取的字节数。如果由于已到达流末尾而不再有数据,则返回 -1。
参数:
b - 读入数据的缓冲区。
off - 在其处写入数据的数组 b 的初始偏移量。
len - 要读取的最大字节数。

二、OutputStream的API

1、public void write(int b)
将指定的字节写入此输出流。write 的常规协定是:向输出流写入一个字节。要写入的字节是参数 b 的八个低位。b 的 24 个高位将被忽略。

2、public void write(byte[] b)
将 b.length 个字节从指定的字节数组写入此输出流。write(b) 的常规协定是:应该与调用 write(b, 0, b.length) 的效果完全相同。

3、public void write(byte[] b, int off,      int len)
将指定字节数组中从偏移量 off 开始的 len 个字节写入此输出流。write(b, off, len) 的常规协定是:将数组 b 中的某些字节按顺序写入输出流;元素 b[off] 是此操作写入的第一个字节,b[off+len-1] 是此操作写入的最后一个字节。
参数:
b - 数据。
off - 数据中的初始偏移量。
len - 要写入的字节数。

4、public void flush()
刷新此输出流并强制写出所有缓冲的输出字节。flush 的常规协定是:如果此输出流的实现已经缓冲了以前写入的任何字节,则调用此方法指示应将这些字节立即写入它们预期的目标。

public class TestIOStream {
    public static void main(String[] args) {
        testStream();
        testBufferedStream();
        testSelectStream();
    }

    /**
     * 字节流测试
     */
    public static void testStream() {
        InputStream fis = null;
        OutputStream fos = null;
        try {
            fis = new FileInputStream("C:\\x.txt");
            fos = new FileOutputStream("C:\\xcopy.txt");
            long num = 0;    //读取字节计数
            int bt = 0;      //每次读入字节内容
            //当读入文件末尾时,读入数据的值为-1
            //每次读入一个字节,存放到变量bt中,直到读完整个文件
            while ((bt = fis.read()) != -1) {
//                System.out.print(bt);   //以数字的形式逐个输出文件的每个字节
                System.out.print((char) bt);   //以字母的形式逐个输出文件的每个字节
                fos.write(bt);  //将字节写入输出流中,实现文件的copy功能
                num++;
            }
            System.out.println("读取的字节数为" + num);
            fis.close();
            fos.close();
        } catch (FileNotFoundException e) {
            System.out.println("找不到指定的文件!");
            e.printStackTrace();
        } catch (IOException e) {
            System.out.println("文件读取时发生IO异常!");
            e.printStackTrace();
        }
    }

    /**
     * 缓冲的字节流测试
     */
    public static void testBufferedStream() {
        int buffer = 10; //缓冲大小
        try {
            BufferedInputStream bis = new BufferedInputStream(new FileInputStream("C:\\x.txt"));
            BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("C:\\bf2.txt"));
            int bench = 0;
            byte bts[] = new byte[buffer];      //创建字节流缓存
            while ((bis.read(bts)) != -1) {
                bos.write(bts);  //将字节写入输出流中,实现文件的copy功能
                bench++;
            }
            System.out.println("bench=" + bench);
            //将输入流缓冲区中的数据全部写出(千万记住)
            bos.flush();
            bis.close();
            bos.close();
        } catch (FileNotFoundException e) {
            System.out.println("找不到指定的文件!");
            e.printStackTrace();
        } catch (IOException e) {
            System.out.println("文件读取时发生IO异常!");
            e.printStackTrace();
        }
    }

    /**
     * 字节流的选择读取测试
     */
    public static void testSelectStream() {
        OutputStream fos = null;
        int buffer = 25;
        try {
            BufferedInputStream bis = new BufferedInputStream(new FileInputStream("C:\\x.txt"));
            fos = new FileOutputStream("C:\\testSelectStream.txt");

            byte bts[] = new byte[buffer];      //创建缓存
            //从输入流的第5个字节开始,往后读取10个字节,存放到缓存bts中
            //这个方法有个陷阱,缓存buffer的大小最小为“偏移量+要读取字节数”,在次最小应该为15,否则抛IndexOutOfBoundsException异常
            bis.read(bts, 5, 10);
            //将字节写入输出流中,实现文件的copy功能
            fos.write(bts);

            bis.close();
            fos.close();
        } catch (FileNotFoundException e) {
            System.out.println("找不到指定的文件!");
            e.printStackTrace();
        } catch (IOException e) {
            System.out.println("文件读取时发生IO异常!");
            e.printStackTrace();
        }
    }
}

顺序输入流
/*
* SequenceStream.java
*
* Created on 2008年12月23日, 上午10:55
*
* 顺序输入流
*
* java.io包中提供了SequenceInputStream类,用于将多个输入流顺序连接起来,
* 使它们看起来就像一个较长的流。
*/
package study.iostudy;
import java.io.*;
public class SequenceStream
{
    public static void main(String[] args)
    {
        FileInputStream fileStream1, fileStream2;
        try
        {
            String allStr;
            fileStream1 = new FileInputStream("d:\\mydir\\secondFile.txt");
            fileStream2 = new FileInputStream("d:\\mydir\\thirdFile.txt");
            SequenceInputStream seqStream = new SequenceInputStream(fileStream1, fileStream2);
            BufferedInputStream bufObj = new BufferedInputStream(seqStream);
            byte[] bufByte = new byte[1024];
            while (bufObj.read(bufByte, 0, 1024) != -1)
            {
                String tempStr = new String(bufByte);
                System.out.println(tempStr);
            }
        }catch(FileNotFoundException e)
        {
            System.out.println("File not found or no permission.");
        }catch(IOException e)
        {
            System.out.println("error:" + e);
        }
    }
}

对象串行化

/*
* SerializableObject.java
*
* Created on 2008年12月23日, 上午11:26
*
* 对象串行化
*   对象通过写出描述自己状态的数值来记录自己,这个过程叫做对象串行化。对象的寿命通
* 常是随着生成该对象的程序的终止而终止,在有些情况下,需要将对象的状态保存下来,然后
* 在必要的时候将对象恢复,值得注意的是,如果变量是另一个对象的引用,则引用的对象也要
* 串行化,串行化是一个递归的过程,可能会涉及到一个复杂树结构的串行化,比如包括原有对
* 象,对象的对象等。
*   在java.io包中,接口Serializable是实现对象串行化的工具,只有实现了Serializable
* 的对象才可以被串行化。Serializable接口中没有任何的方法,当一个类声明实现Seriali-
* zable接口时,只是表明该类遵循串行化协议,而不需要实现任何特殊的方法。
*   在进行对象串行化时,需要注意将串行化的对象和输入、输出流联系起来,首先通过对
* 象输出流将对象状态保存下来,然后通过对象输入流将对象状态恢复。
*/

package study.iostudy;

import java.io.*;

class Book implements Serializable
{
    String isbn;
    String name;
    int page;
    String type;
    public Book(String isbn, String name, int page, String type)
    {
        this.isbn = isbn;
        this.name = name;
        this.page = page;
        this.type = type;
    }
}

public class SerializableObject implements Serializable
{
    public static void main(String[] args)
            throws IOException, ClassNotFoundException
    {
        Book bookObj = new Book("7-02-016450-1", "Java", 218, "programming");
        FileOutputStream fileOStream = new FileOutputStream("temp.ser");
        ObjectOutputStream objOutStream = new ObjectOutputStream(fileOStream);
        try
        {
            objOutStream.writeObject(bookObj);
            objOutStream.close();
        }catch(IOException e)
        {
            e.printStackTrace();
        }
        bookObj = null;
        FileInputStream fileInStream = new FileInputStream("temp.ser");
        ObjectInputStream objInStream = new ObjectInputStream(fileInStream);
        try
        {
            bookObj = (Book)objInStream.readObject();
            objInStream.close();
        }catch(IOException e)
        {
            e.printStackTrace();
        }
        System.out.println("------------------------------------------------");
        System.out.println("There are information about book:");
        System.out.println("ISBN Number: " + bookObj.isbn);
        System.out.println("Book Name: " + bookObj.name);
        System.out.println("Book Page: " + bookObj.page);
        System.out.println("Book Type: " + bookObj.type);
    }
}
 


本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/rokii/archive/2008/12/24/3596032.aspx
[/size][/size]
分享到:
评论

相关推荐

    java笔记.zip

    尚硅谷康师傅java学习笔记。 、2020-4-5 java学习笔记 2020-4-6 java笔记 ---内部类 2020-4-6 java笔记 ---异常 2020-4-6 java笔记 --多线程 2020-4-8 java笔记 String类 2020-4-9 java 比较器 2020-4-10 java笔记 ...

    Java学习笔记-IO篇

    ### Java学习笔记-IO篇 #### 一、流的基本概念及分类 在Java中,**流**(Stream)是用于处理或传输数据的一种方式。它将数据视为一系列连续的字节序列或者字符序列进行处理。根据不同的标准,流可以分为多种类型:...

    java学习笔记之Java-IO操作共19页.pdf.zi

    【Java IO操作详解】 在Java编程中,IO(Input/Output)操作是处理数据输入与输出的核心技术。Java-IO操作共19页的笔记详细介绍了这一关键领域,旨在帮助...这19页的学习笔记将是你掌握Java IO操作的重要参考资料。

    Java IO学习笔记+代码

    Java IO是Java编程语言中用于输入/输出操作的重要部分,它提供了一系列的类和方法来处理数据的读写,文件的创建、删除以及流的管理等。以下是对标题和描述中涉及的知识点的详细说明: 1. **文件对象的生成**: 在...

    java学习笔记1(java io/nio)

    java学习笔记1(java io/nio)设计模式

    IO-黑马程序员Java学习笔记.rar

    "IO-黑马程序员Java学习笔记"这个压缩包包含了关于Java IO的详细教程,可以帮助我们深入理解这个关键领域。下面将根据提供的文件名来解析可能包含的知识点。 1. **IO.md**: 这个文件很可能是Markdown格式的学习...

    java io流学习笔记1

    Java IO流是Java编程语言中处理输入输出操作的重要部分,尤其在数据传输、文件读写等方面发挥着核心作用。本文将深入探讨Java IO流的基本概念、类型以及它们在实际开发中的应用。 首先,理解IO流的基本概念至关重要...

    java IO流学习笔记

    ### Java IO流学习笔记 #### 异常处理与IO流操作 在进行Java IO流的学习过程中,异常处理是非常重要的一个方面。本节将详细介绍如何在Java中处理异常,并结合具体的IO流操作进行说明。 #### 一、异常处理 在Java...

    《java学习》-java学习笔记.zip

    这份《java学习》笔记包含了多个核心主题,旨在帮助初学者和有经验的开发者深入理解和掌握Java技术。 1. **正则表达式(正则.md)**: 正则表达式在Java中用于文本匹配和搜索,是处理字符串的强大工具。Java提供了...

    Java 学习笔记Java学习笔记

    Java是一种广泛使用的面向对象的编程语言,由Sun Microsystems(现为Oracle公司的一部分)于1995年发布。...Java学习笔记涵盖了这些核心知识点,通过深入学习和实践,你可以逐步掌握Java编程,并应用于实际项目开发中。

    JAVA学习笔记-良葛格

    Java学习笔记主要涉及Java语言的历史背景、语言特点、应用平台和学习建议。以下是对这些内容的详细解析: ### Java语言的历史背景 Java起源于1990年代初的Sun公司(现为Oracle公司的一部分)的“绿色项目”计划,...

    Java基础 学习笔记 Markdownr版

    本学习笔记主要涵盖了Java的基础知识,包括面向对象、集合、IO流、多线程、反射与动态代理以及Java 8的新特性等方面,旨在帮助初学者或有经验的开发者巩固和提升Java编程技能。 1. 面向对象(OOP):Java的核心是...

    JAVA学习笔记

    JAVA学习笔记是一个全面涵盖JAVA编程基础到进阶的资源集合,特别适合初学者掌握JAVA语言和项目开发技术。笔记内容包括了几个核心领域,如编程思想、多线程设计模式、网络编程,以及JAVA的新输入/输出(NIO)系统。 ...

    《java学习》-Java 学习笔记.zip

    本压缩包文件“《java学习》-Java 学习笔记.zip”包含了丰富的学习资源,帮助初学者和进阶者深入理解Java编程。 1. **Java基础知识** - **语法**:Java的基础语法包括变量、数据类型、运算符、流程控制语句(如if-...

    java-IO流与异常机制学习笔记

    自己总结,知识点全面,包含了,IO流,异常机制等学习笔记 含有代码实例可供参考,需要mybase打开 持续更新,需要的自行下载 附上本人写的学习博客 https://blog.csdn.net/qq_35577787/article/details/105088073

    Java 的 IO流笔记.md

    ### Java IO流学习笔记 #### 一、IO流的四大抽象类 - **InputStream/OutputStream**:字节的输入输出流的抽象类。 - 数据单位:字节(8比特,范围0-255) - **Reader/Writer**:字符的输入输出流的抽象类。 - ...

    个人笔记--Java_API

    ### Java核心API知识点详解 #### 一、集合框架 **1.1 什么是集合** 集合是Java编程语言中用于存储和操作多个元素的一种容器。它提供了动态管理元素的...以上就是Java核心API中的关键知识点,希望对学习者有所帮助。

    java学习笔记markdown

    【Java学习笔记Markdown版】是针对Java初学者和进阶者的一份详尽教程,以Markdown格式编写,便于阅读和整理。Markdown是一种轻量级的标记语言,它允许用户使用易读易写的纯文本格式编写文档,然后转换成结构化的HTML...

    Java学习笔记——良葛格

    "Java学习笔记——良葛格"是一份专为初学者设计的教程资料,由良葛格精心编写,旨在帮助读者掌握JDK5.0版本的Java基础知识。JDK(Java Development Kit)是Java开发的核心工具集,包含了编译器、调试器和运行环境等...

Global site tag (gtag.js) - Google Analytics