java文件操作函数与类

一.获得控制台用户输入的信息

 代码如下 复制代码

/**获得控制台用户输入的信息

     * @return

     * @throws IOException

     */

     public String getInputMessage() throws IOException{

        System.out.println("请输入您的命令∶");

        byte buffer[]=new byte[1024];

        int count=System.in.read(buffer);

        char[] ch=new char[count-2];//最后两位为结束符,删去不要

        for(int i=0;i<count-2;i++)

            ch[i]=(char)buffer[i];

            String str=new String(ch);

            return str;

    }/** */...

 

可以返回用户输入的信息,不足之处在于不支持中文输入,有待进一步改进。

 

二.复制文件

 

1.以文件流的方式复制文件

 代码如下 复制代码

/**以文件流的方式复制文件

     * @param src 文件源目录

     * @param dest 文件目的目录

     * @throws IOException 

     */

     public void copyFile(String src,String dest) throws IOException{

        FileInputStream in=new FileInputStream(src);

        File file=new File(dest);

        if(!file.exists())

            file.createNewFile();

        FileOutputStream out=new FileOutputStream(file);

        int c;

        byte buffer[]=new byte[1024];

        while((c=in.read(buffer))!=-1)...{

            for(int i=0;i<c;i++)

                out.write(buffer[i]);       

 

            }

        in.close();

        out.close();

    }/** */...

 

该方法经过测试,支持中文处理,并且可以复制多种类型,比如txt,xml,jpg,doc等多种格式

 

三.写文件

 

1.利用PrintStream写文件

 代码如下 复制代码

/**

     * 文件输出示例

     */

    public void PrintStreamDemo(){

        try ...{

            FileOutputStream out=new FileOutputStream("D:/test.txt");

            PrintStream p=new PrintStream(out);

            for(int i=0;i<10;i++)

                p.println("This is "+i+" line");

        } catch (FileNotFoundException e) ...{

            e.printStackTrace();

        }

    }/** */...

 

2.利用StringBuffer写文件

 代码如下 复制代码

public void StringBufferDemo() throws IOException...{

        File file=new File("/root/sms.log");

        if(!file.exists())

            file.createNewFile();

        FileOutputStream out=new FileOutputStream(file,true);      

         for(int i=0;i<10000;i++)......{

            StringBuffer sb=new StringBuffer();

            sb.append("这是第"+i+"行:前面介绍的各种方法都不关用,为什么总是奇怪的问题 ");

            out.write(sb.toString().getBytes("utf-8"));

        }       

        out.close();

    }...

 

该方法可以设定使用何种编码,有效解决中文问题。

 

四.文件重命名

 

 

 代码如下 复制代码

 

    /**文件重命名

     * @param path 文件目录

     * @param oldname  原来的文件名

     * @param newname 新文件名

     */

    public void renameFile(String path,String oldname,String newname){

        if(!oldname.equals(newname))...{//新的文件名和以前文件名不同时,才有必要进行重命名

            File oldfile=new File(path+"/"+oldname);

            File newfile=new File(path+"/"+newname);

            if(newfile.exists())//若在该目录下已经有一个文件和新文件名相同,则不允许重命名

                System.out.println(newname+"已经存在!");

            else...{

                oldfile.renameTo(newfile);

            }

        }        

    }/** */...

五.转移文件目录

 

 代码如下 复制代码

 

 

 

转移文件目录不等同于复制文件,复制文件是复制后两个目录都存在该文件,而转移文件目录则是转移后,只有新目录中存在该文件。

    /**转移文件目录

     * @param filename 文件名

     * @param oldpath 旧目录

     * @param newpath 新目录

     * @param cover 若新目录下存在和转移文件具有相同文件名的文件时,是否覆盖新目录下文件,cover=true将会覆盖原文件,否则不操作

     */

     public void changeDirectory(String filename,String oldpath,String newpath,boolean cover){         if(!oldpath.equals(newpath))...{

            File oldfile=new File(oldpath+"/"+filename);

            File newfile=new File(newpath+"/"+filename);

            if(newfile.exists())...{//若在待转移目录下,已经存在待转移文件

                if(cover)//覆盖

                    oldfile.renameTo(newfile);

                else

                    System.out.println("在新目录下已经存在:"+filename);

            }

            else...{

                oldfile.renameTo(newfile);

            }

        }      

    }/** */...

 

 

 

六.读文件

 

1.利用FileInputStream读取文件

 代码如下 复制代码

 

    /**读文件

     * @param path

     * @return

     * @throws IOException

     */

    public String FileInputStreamDemo(String path) throws IOException{

        File file=new File(path);

        if(!file.exists()||file.isDirectory())

            throw new FileNotFoundException();

        FileInputStream fis=new FileInputStream(file);

        byte[] buf = new byte[1024];

        StringBuffer sb=new StringBuffer();

        while((fis.read(buf))!=-1)...{

            sb.append(new String(buf));   

            buf=new byte[1024];//重新生成,避免和上次读取的数据重复

        }

        return sb.toString();

    }/** */...

 

 

 

2.利用BufferedReader读取

 

在IO操作,利用BufferedReader和BufferedWriter效率会更高一点

  

 代码如下 复制代码

  /**读文件

     * @param path

     * @return

     * @throws IOException

     */

    public String BufferedReaderDemo(String path) throws IOException{

        File file=new File(path);

        if(!file.exists()||file.isDirectory())

            throw new FileNotFoundException();

        BufferedReader br=new BufferedReader(new FileReader(file));

        String temp=null;

        StringBuffer sb=new StringBuffer();

        temp=br.readLine();

        while(temp!=null)...{

            sb.append(temp+" ");

            temp=br.readLine();

        }

        return sb.toString();

    }/** */...

 

 

 

3.利用dom4j读取xml文件

  

 代码如下 复制代码

  /**从目录中读取xml文件

     * @param path 文件目录

     * @return

     * @throws DocumentException

     * @throws IOException

     */

    public Document readXml(String path) throws DocumentException, IOException{         File file=new File(path);

        BufferedReader bufferedreader = new BufferedReader(new FileReader(file));         SAXReader saxreader = new SAXReader();

        Document document = (Document)saxreader.read(bufferedreader);

        bufferedreader.close();

        return document;

    }/** */...

 

 

七.创建文件(文件夹)

1.创建文件夹

 代码如下 复制代码

 /**创建文件夹

     * @param path  目录

     */

    public void createDir(String path){

        File dir=new File(path);

        if(!dir.exists())

            dir.mkdir();

    }/** */...

2.创建新文件

 代码如下 复制代码

/**创建新文件

     * @param path 目录

     * @param filename 文件名

     * @throws IOException

     */

    public void createFile(String path,String filename) throws IOException{         File file=new File(path+"/"+filename);

        if(!file.exists())

            file.createNewFile();

    }/** */...

八.删除文件(目录) 1.删除文件

 

 代码如下 复制代码

   /**删除文件

     * @param path 目录

     * @param filename 文件名

     */

    public void delFile(String path,String filename){

        File file=new File(path+"/"+filename);

        if(file.exists()&&file.isFile())

            file.delete();

    }/** */...

2.删除目录 要利用File类的delete()方法删除目录时,必须保证该目录下没有文件或者子目录,否则删除失败,因此在实际应用中,我们要删除目录,必须利用递归删除该目录下的所有子目录和文件,然后再删除该目录。

 /**递归删除文件夹

     * @param path

 

 代码如下 复制代码
package com.b510;
 
 import java.io.File;
 import java.io.FileInputStream;
 import java.io.FileOutputStream;
 import java.io.FileWriter;
 import java.io.InputStream;
 import java.io.PrintWriter;
 
 /**
  *
  * @author Hongten</br>
  *
  *         文件的操作
  *
   *
  *
  */
 public class OperateFiles {
 
     /**
      * @param args
 */
     public static void main(String[] args) {
         OperateFiles operateFiles = new OperateFiles();
         //新建一个文件夹
         operateFiles.newFolder("c:/hongten");
         //新建一个文件,同时向里面写入内容
         operateFiles.newFile("c:/hongten/Hello.txt", "hello,i'm Hongten.你好");
         //删除一个文件
         operateFiles.deleteFile("c:/hongten/Hello.txt");
         //删除一个文件夹
         operateFiles.deleteFolder("c:/hongten");
         //复制文件夹
         operateFiles.copyFolder("c:/hongten", "e:/hongten");
         //提取文件的扩展名
         String expandedName=operateFiles.getExpandedName("c:/hongten/Hello.txt");
         System.out.println(expandedName);
         //提取文件的路径
         System.out.println(operateFiles.getFilePath("c:/hongten/Hello.txt"));
     }
 
     /**
      * 获得文件的扩展名
      * @param filePath 文件的路径 如:c:/hongten/Hello.txt
      * @return 文件的扩展名 如:txt
 */
     public String getExpandedName(String filePath){
         return filePath.substring(filePath.lastIndexOf(".")+1);
     }
     /**
      * 获得文件的路径
      * @param file 文件的路径
      * @return 文件的路径
 */
     public String getFilePath(String file){
         return file.substring(0,file.lastIndexOf("/")); 
     }
     /**
      * 新建一个目录
      *
      * @param folderPath
      *            新建目录的路径 如:c:\newFolder
 */
     public void newFolder(String folderPath) {
         try {
             File myFolderPath = new File(folderPath.toString());
             if (!myFolderPath.exists()) {
                 myFolderPath.mkdir();
             }
         } catch (Exception e) {
             System.out.println("新建目录操作出错");
             e.printStackTrace();
         }
     }
 
     /**
      * 新建一个文件
      *
      * @param filePath
      *            新建文件的目录 如:c:\hongten.java
 */
     public void newFile(String filePath) {
         try {
             File myFilePathFile = new File(filePath.toString());
             if (!myFilePathFile.exists()) {
                 myFilePathFile.createNewFile();
             }
         } catch (Exception e) {
             System.out.println("新文件创建失败");
             e.printStackTrace();
         }
     }
 
     /**
      * 新建一个文件,同时向文件中写入内容
      *
      * @param filePath
      *            新建文件的目录 如:c:\hongten.java
      * @param fileContent
      *            向文件中写入的内容
 */
     public void newFile(String filePath, String fileContent) {
         try {
             newFile(filePath);
             FileWriter resultFile = new FileWriter(filePath);
             PrintWriter myFile = new PrintWriter(resultFile);
             myFile.println(fileContent);
             resultFile.close();
         } catch (Exception e) {
             System.out.println("新建文件操作出错");
             e.printStackTrace();
         }
     }
 
     /**
      * 删除一个文件
      *
      * @param filePath
      *            要删除文件的绝对路径 如:c:\hongten\Hello.txt
 */
     public void deleteFile(String filePath) {
         try {
             File preDelFile = new File(filePath);
             if (preDelFile.exists()) {
                 preDelFile.delete();
             } else {
                 System.out.println(filePath + "不存在!");
             }
         } catch (Exception e) {
             System.out.println("删除文件操作出错");
             e.printStackTrace();
         }
     }
 
     /**
      * 删除一个文件夹
      *
      * @param folderPath
      *            要删除的文件夹的绝对路径 如:c:\hongten
 */
     public void deleteFolder(String folderPath) {
         try {
             delAllFiles(folderPath);
             File preDelFoder = new File(folderPath);
             if (preDelFoder.exists()) {
                 preDelFoder.delete();
             } else {
                 System.out.println(folderPath + "不存在!");
             }
         } catch (Exception e) {
             System.out.println("删除文件操作出错");
             e.printStackTrace();
         }
     }
 
     /**
      * 删除一个文件夹下的所有文件
      *
      * @param folderPath
      *            要删除的文件夹的绝对路径 如:c:\hongten
 */
     public void delAllFiles(String folderPath) {
         File file = new File(folderPath);
         if (!file.exists()) {
             return;
         }
         if (!file.isDirectory()) {
             return;
         }
         String[] tempList = file.list();
         File temp = null;
         for (int i = 0; i < tempList.length; i++) {
             if (folderPath.endsWith(File.separator)) {
                 temp = new File(folderPath + tempList[i]);
             } else {
                 temp = new File(folderPath + File.separator + tempList[i]);
             }
             if (temp.isFile()) {
                 temp.delete();
             }
             if (temp.isDirectory()) {
                 delAllFiles(folderPath + "/" + tempList[i]);// 先删除文件夹里面的文件
                 deleteFolder(folderPath + "/" + tempList[i]);// 再删除空文件夹
             }
         }
     }
 
     /**
      * 单个文件的复制
      *
      * @param oldPath
      *            原路径 如:c:\Hello.java
      * @param newPath
      *            新路径 如:f:\Hello.java
 */
     public void copyFile(String oldPath, String newPath) {
         try {
             int bytesum = 0;
             int byteread = 0;
             File oldfile = new File(oldPath);
             if (oldfile.exists()) { // 文件存在时
                 InputStream inStream = new FileInputStream(oldPath); // 读入原文件
                 FileOutputStream fs = new FileOutputStream(newPath);
                 byte[] buffer = new byte[1444];
                 // int length = 0;
                 while ((byteread = inStream.read(buffer)) != -1) {
                     bytesum += byteread; // 字节数 文件大小
                     fs.write(buffer, 0, byteread);
                 }
                 inStream.close();
             }
         } catch (Exception e) {
             System.out.println("复制单个文件操作出错");
             e.printStackTrace();
 
         }
     }
 
     /**
      * 文件夹的复制
      *
      * @param oldPath
      *            原文件夹路径 如: c:\hello
      * @param newPath
      *            新文件夹路径 如: e:\hello
 */
     public void copyFolder(String oldPath, String newPath) {
 
         try {
             (new File(newPath)).mkdirs(); // 如果文件夹不存在 则建立新文件夹
             File a = new File(oldPath);
             String[] file = a.list();
             File temp = null;
             for (int i = 0; i < file.length; i++) {
                 if (oldPath.endsWith(File.separator)) {
                     temp = new File(oldPath + file[i]);
                 } else {
                     temp = new File(oldPath + File.separator + file[i]);
                 }
 
                 if (temp.isFile()) {
                     FileInputStream input = new FileInputStream(temp);
                     FileOutputStream output = new FileOutputStream(newPath
                             + "/" + (temp.getName()).toString());
                     byte[] b = new byte[1024 * 5];
                     int len;
                     while ((len = input.read(b)) != -1) {
                         output.write(b, 0, len);
                     }
                     output.flush();
                     output.close();
                     input.close();
                 }
                 if (temp.isDirectory()) {// 如果是子文件夹
                     copyFolder(oldPath + "/" + file[i], newPath + "/" + file[i]);
                 }
             }
         } catch (Exception e) {
             System.out.println("复制整个文件夹内容操作出错");
             e.printStackTrace();
 
         }
     }
 
     /**
      * 移动单个文件
      *
      * @param oldPath
      *            源文件路径 如:c:\hello.java
      * @param newPath
      *            新文件路径 如:e:\hello.java
 */
     public void moveFile(String oldPath, String newPath) {
         copyFile(oldPath, newPath);
         deleteFile(oldPath);
     }
 
     /**
      * 移动文件夹
      *
      * @param oldPath
      *            原文件夹路径 如:c:\hongten
      * @param newPath
      *            新文件夹路径 如:e:\hongten
 */
     public void moveFolder(String oldPath, String newPath) {
         copyFolder(oldPath, newPath);
         deleteFolder(oldPath);
     }
 
     /**
      * 获得系统根目录绝对路径
      *
      * @return
 */
     public String getPath() {
         String sysPath = this.getClass().getResource("/").getPath();
         // 对路径进行修改
         sysPath = sysPath.substring(1, sysPath.length() - 16);
         return sysPath;
     }
 
 }

InputStream类和OutputStream类
InputStream类是所有输入数据流的父类,它是一个抽象类,定义了所有输入数据流都具有的共通特性。
java.io.InputStream的方法如下:
public abstract read()throws IOException
读取一个字节并返回该字节,如果到输入源的末则返回-1。一个具体的输入流类需要重载此方法,以提供 有用的功能。例如:在FileInputStream类中,该方法从一个文件读取一个字节。
public int read(byte[] b)throws IOException
把数据读入到一个字节数据中,并返回实际读取的字节数目。如果遇到流末 则返回-1,该方法最多读取b.length个字节。
public abstract int read(byte[] b,int off,int len)throws IOException
把数据读入到一个字节数组中并返回实际读取的字节数目。如果遇到流的末尾则的返回-1。 其中参数off表示第一个字节在b中的位置,len表示读取的最大字节数。
public long skip(long n)throws IOException
略过N个字节不读取,会返回实际略过的字节数目。因为数据流中剩下的数据可能不到N 个字节那么多,所以此时返回值会小于N。
public int available()throws IOException
read方法(包括后面要讲的OutputStream类的Write方法)都能够阴塞一个线程,直到字节被 实际读取或写入。这意味着如果一个流不能立即被读或被写

时间: 2024-09-17 04:00:07

java文件操作函数与类的相关文章

java文件操作大全

java文件操作大全 文件的建立/检查与删除<%@ page contentType="text/html;charset=gb2312"%><%@ page import="java.io.*"%><html><head><title>文件的建立.检查与删除</title></head><body><%String path=request.getRealPath

二进制-新手请教java文件操作的一个小问题~十分感谢

问题描述 新手请教java文件操作的一个小问题~十分感谢 这个类的功能是将任意一个二进制文件中的0压缩成0的数目+0的形式 即:将二进制文件中16进制显示的00压缩成 "0的数目+00的形式" 如00 00 00 1A 压缩成03 00 1A 待压缩文件16进制内容: 代码执行后后生成的文件却成了如图所示的情况 求教什么地方出错了,万分感谢. import java.io.*; public class FileCompression { public static void main

PHP常用的文件操作函数经典收藏_php技巧

以下是个人总结的PHP文件操作函数.当然,这只是部分,还有很多,我没有列出来. 一 .解析路径: 1 获得文件名: basename(); 给出一个包含有指向一个文件的全路径的字符串,本函数返回基本的文件名.如果文件名是以 suffix 结束的,那这一部分也会被去掉. eg: 复制代码 代码如下: $path = "/home/httpd/html/index.php"; $file = basename($path,".php"); // $file is set

关于java问题-有关java文件操作的问题

问题描述 有关java文件操作的问题 有一个java程序, 就是统计幼儿园小朋友需要的铅笔(一支铅笔2元)的总价 我已经用面向对象的思想实现了这个程序, 程序输出是一行行的 姓名 年纪 需要铅笔的数目 某小朋友总价 最后输出所有的价格 (例如 小明 4 5 10元 小李 5 4 8元 ......) 现在需要从文件读取一行行的信息(就是上面的格式),并计算总价,这个该怎么做? 解决方案 你好,,根据你的需求,,我是写了一个实体类,,然后用list遍历输出,,代码如下: public class

文件操作函数

函数 PHP3.0中的文件操作函数大体和C的类似,但有一些扩充,特别是除了支持 对本机文件的访问外,也支持对HTTP和FTP的URL进行访问,只要把这些URL作为文件名传递给文件操作函数就可以了. 主要的文件操作函数有: (1)fclose, feof, fgetc, fgets, fopen, fputs, fseek, ftell, mkdir, readlink, rename, rewind, rmdir, stat, unlink 这些函数的功能和C语言中的同名函数类似. (2)chg

Linux 文件操作函数

底层文件操作函数:  #include<unistd.h> int open(const char* pathname,int flags); int open(const char* pathname,int flags,mode_t mode);//返回值:成功,返回文件描述符 失败,返回-1,失败原因记录在errno中 int close(int fd); //返回值:成功返回0 失败返回-1 size_t read(int fd,void *buffer,sizeof(buffer))

让你提前认识软件开发(18):C语言中常用的文件操作函数总结及使用方法演示代码

第1部分 重新认识C语言 C语言中常用的文件操作函数总结及使用方法演示代码           在C语言中,有关文件操作的函数多达数十种,但并非每个函数都经常会被用到.        本文对实际软件开发项目中常用的C文件操作函数的用法进行了总结,并用实际的C代码来演示了它们的用法.   1. C语言中常用的文件操作函数总结 (1) fopen 作用:打开文件. 表头文件:#include <stdio.h> 定义函数:FILE *fopen(const char *path, const ch

文件类型,c语言文件读写,文件缓冲,文件打开方式,文件操作函数

文件类型分为:流文件和设备文件,设备文件比如:VGA接口,串口,usb口,网口,串口,这些接口都被操作系统抽象成为了文件. 当我们写程序的时候默认已经帮我们打开了三个文件 分别是: stdin:标准输入,stdout:标准输出,stderr:标准出错,scanf实际上接收的是标准输入的数据,这时候的标准输入就是我们的键盘.              有四种方式清空缓冲区:      A.加'\n';            B.程序正常退出;      C.通过fflush(stdout)也可以清

android-Android怎么在java文件里设置第三方类包的属性值

问题描述 Android怎么在java文件里设置第三方类包的属性值 解决方案 查看这个控件的源码看看是否有相关的设置方法 解决方案二: 这个问题自己也不太了解,但可以推荐几篇有关这个方面的博文.http://blog.csdn.net/bruce_ke/article/details/6911237http://blog.csdn.net/tanqiantot/article/details/8588771 解决方案三: 在需要引用的xml文件中的根布局里面加上xmlns:app = "http