转载

Java基础之I/O流详解(1)

总结一下Java I/O文件读写基本类相关知识和概念,对于程序设计者来说,创建一个好的输入/输出系统是一项艰难的任务,其中挑战来源于所有的可能性,不仅存在各种源端 与接收端(文件,控制台,网络链接等),而且还需要以各种不同的方式与它们通信(顺序,随机存取,缓冲,二进制,按字符,按行,按字等)。

Java I/O主要包括如下几个层次:

  1.  File(文件特征与管理):用于文件或者目录的描述信息,例如生成新目录,修改文件名,删除文件,判断文件所在路径等。
  2.  InputStream(二进制格式操作):抽象类,基于字节的输入操作,是所有输入流的父类。定义了所有输入流都具有的共同特征。
  3.  OutputStream(二进制格式操作):抽象类。基于字节的输出操作。是所有输出流的父类。定义了所有输出流都具有的共同特征。Java中字符是采用Unicode标准,一个字符是16位,即一个字符使用两个字节来表示。为此,JAVA中引入了处理字符的流。
  4.  Reader(文件格式操作):抽象类,基于字符的输入操作。
  5.  Writer(文件格式操作):抽象类,基于字符的输出操作。
  6.  RandomAccessFile(随机文件操作):它的功能丰富,可以从文件的任意位置进行存取(输入输出)操作。

1. File

它是独立于系统平台的,利用其构造函数创建出相应的File 对象;再调用其中的方法实现对文件的各个属性方面的操作。

构造函数:

  • File( String  path)
  • File(String path, String FileName)
  • File(File dir, String name)

用途:File类提供了一种与机器无关的方式来描述一个文件对象的属性,通过类File所提供的方法,可以得到文件或目录的描述信息,这主要包括名称、所在路经、可读性、可写性、文件的长度等,还可以生成新的目录、改变文件名、删除文件、列出一个目录中所有的文件等。

  1. public static void main(String[] args) throws IOException {   
  2.         File f = new File("dir");   
  3.    
  4.         f.createNewFile();// 创建一个.txt这个文件   
  5.    
  6.         f.mkdir();// 创建一个名为.txt的目录   
  7.    
  8.         /*  
  9.          * 使用绝对路径  
  10.          *   
  11.          * File f=new File("D://dir//src//A.java");  
  12.          *   
  13.          * f.createNewFile();  
  14.          */   
  15.    
  16.         /*  
  17.          * 跨平台使用  
  18.          *   
  19.          * 根据不同操作系统获得对应的分隔符 File fDir=new File(File.separator);  
  20.          *   
  21.          * String strFile="dir"+File.separator+"src"+File.separator +"A.java";  
  22.          *   
  23.          * File f=new File(fDir,strFile);  
  24.          *   
  25.          * f.createNewFile();  
  26.          *   
  27.          * f.delete();//删除文件或目录  
  28.          *   
  29.          * //f.deleteOnExit();  
  30.          */   
  31.    
  32.         /*  
  33.          * 在缺省的临时文件目录下创建临时文件  
  34.          *   
  35.          * for(int i=0;i<5;i++)  
  36.          *   
  37.          * {  
  38.          *   
  39.          * File f=File.createTempFile("winTemp",".tmp");  
  40.          *   
  41.          * f.deleteOnExit();//退出时删除  
  42.          *   
  43.          *   
  44.          *   
  45.          * }  
  46.          */   
  47.    
  48.         /*   
  49.          * 列出指定目录下所有子目录及文件的名称   
  50.          */   
  51.         File fDir = new File(File.separator);   
  52.         String strFile = "dir" + File.separator + "src";   
  53.         File f = new File(fDir, strFile);   
  54.         String[] names = f.list();   
  55.         for (int i = 0; i < names.length; i++) {   
  56.             System.out.println(names[i]);   
  57.         }   
  58.    
  59.         // 有过滤器的情况FilenameFilter是个接口   
  60.         File dir = new File(File.separator);   
  61.    
  62.         String filepath = "dir" + File.separator + "src";   
  63.    
  64.         /**  
  65.          * dir  
  66.          * 上级抽象路径,如果dir为null,那么程序将自动调用单个参数的File构造方法,同时将filepath路径应用到File但构造参数  
  67.          * 如果dir为//,则此路径为本文件所在磁盘根目录  
  68.          */   
  69.         File f = new File(dir, filepath);   
  70.         if (f.exists()) {   
  71.         } else {   
  72.             f.mkdirs();   
  73.         }   
  74.    
  75.         String[] names = f.list(new FilenameFilter() { // 实现了FilenameFilter接口的匿名类,实现accept方法过滤文件   
  76.    
  77.                     @Override   
  78.                     public boolean accept(File dir, String name) {   
  79.                         System.out.println(name.indexOf(".java"));   
  80.                         return name.indexOf(".java") != -1;   
  81.                     }   
  82.                 });   
  83.    
  84.         for (int i = 0; i < names.length; i++) {   
  85.             System.out.println(names[i]);   
  86.         }   
  87.     }   

内容导航
 第 1 页:Java基础之/IO流详解(1)  第 2 页:Java基础之/IO流详解(2)
 第 3 页:a基础之/IO流详解(3)

原文:Java基础之I/O流详解(1) 返回开发首页

  1. public static void main(String[] args) throws IOException {   
  2.         File f = new File("dir");   
  3.    
  4.         f.createNewFile();// 创建一个.txt这个文件   
  5.    
  6.         f.mkdir();// 创建一个名为.txt的目录   
  7.    
  8.         /*  
  9.          * 使用绝对路径  
  10.          *   
  11.          * File f=new File("D://dir//src//A.java");  
  12.          *   
  13.          * f.createNewFile();  
  14.          */   
  15.    
  16.         /*  
  17.          * 跨平台使用  
  18.          *   
  19.          * 根据不同操作系统获得对应的分隔符 File fDir=new File(File.separator);  
  20.          *   
  21.          * String strFile="dir"+File.separator+"src"+File.separator +"A.java";  
  22.          *   
  23.          * File f=new File(fDir,strFile);  
  24.          *   
  25.          * f.createNewFile();  
  26.          *   
  27.          * f.delete();//删除文件或目录  
  28.          *   
  29.          * //f.deleteOnExit();  
  30.          */   
  31.    
  32.         /*  
  33.          * 在缺省的临时文件目录下创建临时文件  
  34.          *   
  35.          * for(int i=0;i<5;i++)  
  36.          *   
  37.          * {  
  38.          *   
  39.          * File f=File.createTempFile("winTemp",".tmp");  
  40.          *   
  41.          * f.deleteOnExit();//退出时删除  
  42.          *   
  43.          *   
  44.          *   
  45.          * }  
  46.          */   
  47.    
  48.         /*   
  49.          * 列出指定目录下所有子目录及文件的名称   
  50.          */   
  51.         File fDir = new File(File.separator);   
  52.         String strFile = "dir" + File.separator + "src";   
  53.         File f = new File(fDir, strFile);   
  54.         String[] names = f.list();   
  55.         for (int i = 0; i < names.length; i++) {   
  56.             System.out.println(names[i]);   
  57.         }   
  58.    
  59.         // 有过滤器的情况FilenameFilter是个接口   
  60.         File dir = new File(File.separator);   
  61.    
  62.         String filepath = "dir" + File.separator + "src";   
  63.    
  64.         /**  
  65.          * dir  
  66.          * 上级抽象路径,如果dir为null,那么程序将自动调用单个参数的File构造方法,同时将filepath路径应用到File但构造参数  
  67.          * 如果dir为//,则此路径为本文件所在磁盘根目录  
  68.          */   
  69.         File f = new File(dir, filepath);   
  70.         if (f.exists()) {   
  71.         } else {   
  72.             f.mkdirs();   
  73.         }   
  74.    
  75.         String[] names = f.list(new FilenameFilter() { // 实现了FilenameFilter接口的匿名类,实现accept方法过滤文件   
  76.    
  77.                     @Override   
  78.                     public boolean accept(File dir, String name) {   
  79.                         System.out.println(name.indexOf(".java"));   
  80.                         return name.indexOf(".java") != -1;   
  81.                     }   
  82.                 });   
  83.    
  84.         for (int i = 0; i < names.length; i++) {   
  85.             System.out.println(names[i]);   
  86.         }   
  87.     }   

  1. public static void main(String[] args) throws IOException { 
  2.         File f = new File("dir"); 
  3.  
  4.         f.createNewFile();// 创建一个.txt这个文件 
  5.  
  6.         f.mkdir();// 创建一个名为.txt的目录 
  7.  
  8.         /* 
  9.          * 使用绝对路径 
  10.          *  
  11.          * File f=new File("D://dir//src//A.java"); 
  12.          *  
  13.          * f.createNewFile(); 
  14.          */ 
  15.  
  16.         /* 
  17.          * 跨平台使用 
  18.          *  
  19.          * 根据不同操作系统获得对应的分隔符 File fDir=new File(File.separator); 
  20.          *  
  21.          * String strFile="dir"+File.separator+"src"+File.separator +"A.java"; 
  22.          *  
  23.          * File f=new File(fDir,strFile); 
  24.          *  
  25.          * f.createNewFile(); 
  26.          *  
  27.          * f.delete();//删除文件或目录 
  28.          *  
  29.          * //f.deleteOnExit(); 
  30.          */ 
  31.  
  32.         /* 
  33.          * 在缺省的临时文件目录下创建临时文件 
  34.          *  
  35.          * for(int i=0;i<5;i++) 
  36.          *  
  37.          * { 
  38.          *  
  39.          * File f=File.createTempFile("winTemp",".tmp"); 
  40.          *  
  41.          * f.deleteOnExit();//退出时删除 
  42.          *  
  43.          *  
  44.          *  
  45.          * } 
  46.          */ 
  47.  
  48.         /* 
  49.          * 列出指定目录下所有子目录及文件的名称 
  50.          */ 
  51.         File fDir = new File(File.separator); 
  52.         String strFile = "dir" + File.separator + "src"
  53.         File f = new File(fDir, strFile); 
  54.         String[] names = f.list(); 
  55.         for (int i = 0; i < names.length; i++) { 
  56.             System.out.println(names[i]); 
  57.         } 
  58.  
  59.         // 有过滤器的情况FilenameFilter是个接口 
  60.         File dir = new File(File.separator); 
  61.  
  62.         String filepath = "dir" + File.separator + "src"
  63.  
  64.         /** 
  65.          * dir 
  66.          * 上级抽象路径,如果dir为null,那么程序将自动调用单个参数的File构造方法,同时将filepath路径应用到File但构造参数 
  67.          * 如果dir为//,则此路径为本文件所在磁盘根目录 
  68.          */ 
  69.         File f = new File(dir, filepath); 
  70.         if (f.exists()) { 
  71.         } else { 
  72.             f.mkdirs(); 
  73.         } 
  74.  
  75.         String[] names = f.list(new FilenameFilter() { // 实现了FilenameFilter接口的匿名类,实现accept方法过滤文件 
  76.  
  77.                     @Override 
  78.                     public boolean accept(File dir, String name) { 
  79.                         System.out.println(name.indexOf(".java")); 
  80.                         return name.indexOf(".java") != -1
  81.                     } 
  82.                 }); 
  83.  
  84.         for (int i = 0; i < names.length; i++) { 
  85.             System.out.println(names[i]); 
  86.         } 
  87.     } 

内容导航
 第 1 页:Java基础之/IO流详解(1)  第 2 页:Java基础之/IO流详解(2)
 第 3 页:a基础之/IO流详解(3)

原文:Java基础之I/O流详解(2) 返回开发首页

RandomAccessFile(随机文件读写类):

(1)RandomAccessFile类:它直接继承于Object类而非InputStream/OutputStream类,从而可以实现读写文件中任何位置中的数据(只需要改变文件的读写位置的指针)。

(2)由于RandomAccessFile类实现了DataOutput与DataInput接口,因而利用它可以读写Java中的不同类型的基本类型数据(比如采用readLong()方法读取长整数,而利用  readInt()方法可以读出整数值等)。

RandomFileRW.java

  1. import java.io.IOException;   
  2. import java.io.RandomAccessFile;   
  3.    
  4. public class RandomFileRW {   
  5.    
  6.     public static void main(String args[]) {   
  7.         StringBuffer buf = new StringBuffer();   
  8.         char ch;   
  9.            
  10.         try {   
  11.             while ((ch = (char) System.in.read()) != '/n') {   
  12.                 buf.append(ch);   
  13.             }   
  14.                
  15.             // 读写方式可以为"r" or "rw"   
  16.                
  17.             /**  
  18.              * @param mode 1. r 2. rw 3. rws 4. rwd  
  19.              * "r" Open for reading only. Invoking any of the write methods of the resulting object will  
  20.              *      cause an IOException to be thrown.    
  21.              * "rw" Open for reading and writing. If the file does not already exist then an attempt will  
  22.              *      be made to create it.    
  23.              * "rws" Open for reading and writing, as with "rw", and also require that every update to the  
  24.              *      file's content or metadata be written synchronously to the underlying storage device.    
  25.              * "rwd"   Open for reading and writing, as with "rw", and also require that every update to the  
  26.              *      file's content be written synchronously to the underlying storage device.   
  27.              */   
  28.             RandomAccessFile myFileStream = new RandomAccessFile("c://UserInput.txt""rw");   
  29.             myFileStream.seek(myFileStream.length());   
  30.             myFileStream.writeBytes(buf.toString());   
  31.                
  32.             // 将用户从键盘输入的内容添加到文件的尾部   
  33.             myFileStream.close();   
  34.         } catch (IOException e) {   
  35.         }   
  36.     }   
  37. }   

正文到此结束
Loading...