파일 클래스 로 복사 기능 구현 (정규 표현 식 으로 값 교체)

1284 단어 정규 표현 식
/*
 * 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
I LOVE U I LOVE U I LOVE U\r
I 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(); } }  

좋은 웹페이지 즐겨찾기