文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>使用java去掉文本中的行号

使用java去掉文本中的行号

时间:2010-10-12  来源:reesun


import java.text.SimpleDateFormat;
import java.util.*;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import java.io.*;
import java.net.*;
public class test {
    public int count ;
    private static Hashtable<Integer,String> table = new Hashtable();

    public test(int k){
        count = k;
    }


    public void docount(){
        
    }


    public static void main(String[] args) throws IOException {
        File f = new File("C:\\Users\\lcy644\\Desktop\\Mac.txt");
        BufferedReader br = new BufferedReader(new FileReader(f));
        String content = "";
        String str = "";
        str = br.readLine();
        BufferedWriter bw = new BufferedWriter(new FileWriter(f));
        while((str=br.readLine())!=null){
            String str1 = str.replaceFirst("\\d{1,2}\\.", "");
            content += str1;
            content += "\r\n";
        }
        bw.write(content);
        bw.close();
        
    }

}


相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载