用文件类实现复制功能(并用正则表达式替换里面值)

/*
 * couter:苏奕祥
 * 实现两个文件的复制功能并且用到正则表达式替换复制完后的值
 * 
 */

import java.io.*;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
	public class CopyFile {
	 	public static void main(String[] args)throws IOException{
	 		File f=new File("E:\\sdx.txt");
	 		File f2=new File("E:\\sdxcopy.txt");
	 		Writer copy=new FileWriter(f2);
	 	    	Writer aaa=null;
	 	    	aaa=new FileWriter(f);
	 	    	aaa.write("I LOVE U I LOVE U I LOVE U\r\nI LOVE U I LOVE U I LOVE U\r\nI LOVE U I LOVE U I LOVE U");
	 	    	aaa.close();
		    
	 	    	Reader read=null;
	 	    	read=new FileReader(f);
	 	    	char c[]=new char[1024];
	 	    	int len=read.read(c);
	 	    	System.out.println(len);
	 	    	read.close();
	 	    	String str=new String(c,0,len);
	 	    	System.out.println("内容为:"+str);
	 	
 			Pattern p=Pattern.compile("LOVE");
 			Matcher m=p.matcher(str);
	 		String str2=m.replaceAll("HATE");
			System.out.println(str2);
			copy.write(str2);
			copy.close();

 		
 	}	
}
 
          
   
 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值