zoukankan      html  css  js  c++  java
  • Java文件运用

    1.使用java修改文件内容:

    package fileopt;
    import java.io.BufferedReader;
    import java.io.BufferedWriter;
    import java.io.FileReader;
    import java.io.FileWriter;
    import java.io.IOException;
    import java.io.RandomAccessFile;
    
    /**
     * 修改文件
     */
    public class FileModify {
    
        /**
         * 读取文件内容
         * 
         * @param filePath
         * @return
         */
        public String read(String filePath) {
            BufferedReader br = null;
            String line = null;
            StringBuffer buf = new StringBuffer();
            
            try {
                // 根据文件路径创建缓冲输入流
                br = new BufferedReader(new FileReader(filePath));
                
                // 循环读取文件的每一行, 对需要修改的行进行修改, 放入缓冲对象中
                while ((line = br.readLine()) != null) {
                    // 此处根据实际需要修改某些行的内容
                    if (line.startsWith("a")) {
                        buf.append(line).append(" start with a");
                    }
                    else if (line.startsWith("b")) {
                        buf.append(line).append(" start with b");
                    }
                    // 如果不用修改, 则按原来的内容回写
                    else {
                        buf.append(line);
                    }
                    buf.append(System.getProperty("line.separator"));
                }
            } catch (Exception e) {
                e.printStackTrace();
            } finally {
                // 关闭流
                if (br != null) {
                    try {
                        br.close();
                    } catch (IOException e) {
                        br = null;
                    }
                }
            }
            
            return buf.toString();
        }
        
        /**
         * 将内容回写到文件中
         * 
         * @param filePath
         * @param content
         */
        public void write(String filePath, String content) {
            BufferedWriter bw = null;
            
            try {
                // 根据文件路径创建缓冲输出流
                bw = new BufferedWriter(new FileWriter(filePath));
                // 将内容写入文件中
                bw.write(content);
            } catch (Exception e) {
                e.printStackTrace();
            } finally {
                // 关闭流
                if (bw != null) {
                    try {
                        bw.close();
                    } catch (IOException e) {
                        bw = null;
                    }
                }
            }
        }
        public void fileAppender(String fileName,String content) throws IOException{
            
            BufferedReader reader = new BufferedReader(new FileReader(fileName));
            String line = null;
            // 一行一行的读
            StringBuilder sb = new StringBuilder();
            sb.append(content);
            while ((line = reader.readLine()) != null) {
                sb.append(line);
                sb.append("
    ");
            }
            reader.close();
    
            //写回去
            RandomAccessFile mm = new RandomAccessFile(fileName, "rw");
            mm.writeBytes(sb.toString());
            mm.close();
        }
        
        /**
         * 主方法
         */
        public static void main(String[] args) {
            String filePath = FileModify.class.getResource("").getPath()+"test.properties"; // 文件路径
            FileModify obj = new FileModify();
            obj.write(filePath, obj.read(filePath)); // 读取修改文件
            try {
                obj.fileAppender(filePath, "set a=b 
    ");
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    
    }
    使用java修改文件内容

    2.使用Java修改文件名

     

    package script;
    
    import java.io.File;
    import java.io.IOException;
    
    public class Realname {
    
     public static void main(String[] args) throws IOException 
     {
     
      File oldFile = new File("d:/PMS");
      if(!oldFile.exists())
      {
       oldFile.createNewFile();
      }
      System.out.println("修改前文件名称是:"+oldFile.getName());
      String rootPath = oldFile.getParent();
      System.out.println("根路径是:"+rootPath);
      File newFile = new File(rootPath + File.separator + "PMSTmp");
      System.out.println("修改后文件名称是:"+newFile.getName());
      if (oldFile.renameTo(newFile)) 
      {
       System.out.println("修改成功!");
      } 
      else 
      {
       System.out.println("修改失败");
      }
     }
    }
    使用Java修改文件名

     

  • 相关阅读:
    用户行为分析
    数据挖掘
    酒店舆情分析
    特征工程·TFIDF提取特征
    mongo.conf 配置信息
    Phpstudy(小皮面板) nginx 解析漏洞
    mvnw 是什么
    java8 函数式接口Function和BiFunction
    ArrayList去除重复元素 利用 HashSet
    idea svn提交 忽略.imi 以及.idea文件夹
  • 原文地址:https://www.cnblogs.com/lbjz/p/3495299.html
Copyright © 2011-2022 走看看