博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java读写删.text,.xml文件内容
阅读量:6591 次
发布时间:2019-06-24

本文共 1678 字,大约阅读时间需要 5 分钟。

package fileIo;   
  
import  .io.BufferedReader;   
import  .io.BufferedWriter;   
import  .io.File;   
import  .io.FileReader;   
import  .io.FileWriter;   
  
 public   class  ReadTextFile   {   
    public  BufferedReader bufread;   
    public  BufferedWriter bufwriter;   
   File writefile;   
   String filepath, filecontent, read;   
   String readStr  =   "" ;   
    // 从文本文件中读取内容    
     public  String readfile(String path)      
      {   
         try    {   
           filepath  =  path;  // 得到文本文件的路径    
            File file  =   new  File(filepath);   
           FileReader fileread  =   new  FileReader(file);   
           bufread  =   new  BufferedReader(fileread);   
             while  ((read  =  bufread.readLine())  !=   null )   {   
               read  =  read + " /r/n " ;               
               readStr  =  readStr  +  read;   
           }    
        }   catch  (Exception d)   {   
           System.out.println(d.getMessage());   
       }    
        return  readStr;  // 返回从文本文件中读取内容    
    }    
  
    // 向文本文件中写入内容    
      public   void  writefile(String path, String content,  boolean  append)   {   
         try    {   
            boolean  addStr  =  append;  // 通过这个对象来判断是否向文本文件中追加内容    
            filepath  =  path;  // 得到文本文件的路径    
            filecontent  =  content;  // 需要写入的内容    
            writefile  =   new  File(filepath);   
            if  (writefile.exists()  ==   false )  // 如果文本文件不存在则创建它     
               {   
               writefile.createNewFile();   
               writefile  =   new  File(filepath);  // 重新实例化    
            }    
           FileWriter filewriter  =   new  FileWriter(writefile, addStr);   
            // 删除原有文件的内容    
            .io.RandomAccessFile file =   new  .io.RandomAccessFile(path, " rw " );   
           file.setLength( 0 );   
            // 写入新的文件内容    
            filewriter.write(filecontent);   
           filewriter.close();   
           filewriter.flush();   
        }   catch  (Exception d)   {   
           System.out.println(d.getMessage());   
       }    
   }    
  
     public   static   void  main(String[] args)  throws  Exception   {   
       ReadTextFile parse  =   new  ReadTextFile();   
       String filecontent  =  parse.readfile( " c:/applicationContext.xml " );           
       parse.writefile( " c:/applicationContext.xml " ,filecontent, true );   
          
   }    
 } 

转载于:https://www.cnblogs.com/uniqueness/archive/2013/03/26/2983116.html

你可能感兴趣的文章
阐述Spring框架中Bean的生命周期?
查看>>
虚拟内存管理
查看>>
注水、占坑、瞎掰:起底机器学习学术圈的那些“伪科学”
查看>>
大数据小视角1:从行存储到RCFile
查看>>
第18天:京东网页头部制作
查看>>
好消息:Dubbo & Spring Boot要来了
查看>>
面向对象封装的web服务器
查看>>
南开大学提出新物体分割评价指标,相比经典指标错误率降低 69.23%
查看>>
初创公司MindMaze研发情绪反应VR,让VR关怀你的喜怒哀乐
查看>>
绕开“陷阱“,阿里专家带你深入理解C++对象模型的特殊之处
查看>>
ElasticSearch
查看>>
9-51单片机ESP8266学习-AT指令(测试TCP服务器--51单片机程序配置8266,C#TCP客户端发信息给单片机控制小灯的亮灭)...
查看>>
香港设计师带来仿生机器人,其身体 70% 构造均由3D打印完成
查看>>
不规则物体形状匹配综述
查看>>
自动化设计-框架介绍 TestCase
查看>>
CJ看showgirl已经out!VR体验才是王道
查看>>
Manually Summarizing EIGRP Routes
查看>>
spring boot 1.5.4 整合webService(十五)
查看>>
modsecurity(尚不完善)
查看>>
获取.propertys文件获取文件内容
查看>>