码迷,mamicode.com
首页 > 其他好文 > 详细

删除txt中不要的字符

时间:2018-08-06 11:45:21      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:跳过   port   out   取消   ==   ret   amp   static   字典   

在对生成数据集的时候,我们需要有语料,一般是写在txt中的,我们如何去掉不要的字符,比如说●

具体思路是,1.txt是字典,2.txt是语料,3.txt是去掉不要字符之后的文本。2.txt逐个字符进行遍历跟1.txt比对,有就写在3.txt中没有就跳过

创建一个app.java文件

在linux中编译:javac app.java

运行:java app

import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.io.Reader;
import java.io.Writer;

public class app {
    public static void main(String[] args) throws IOException{ 
        File file = new File("2.txt");
        Reader fr = new FileReader(file);                    
        Writer fw = new FileWriter("3.txt", false);
        
        int len = fr.read();
        while (-1 != len){
            //System.out.println("=="+len);
            //if(len!=10 && find(len)==1)//全部写成一行
            if(find(len)==1)//取消换行
                fw.write(len);
            len = fr.read();
        }
        
        fw.flush();
        fw.close();
        fr.close();
    }
    public static int find(int x) throws IOException{
        File file = new File("1.txt");
        Reader fr = new FileReader(file);
        int len = fr.read();
        while (-1 != len){
            if(len==x){
                fr.close();
                return 1;
            }
            len = fr.read();
        }
        fr.close();
        return 0;
    }
}
 

 

删除txt中不要的字符

标签:跳过   port   out   取消   ==   ret   amp   static   字典   

原文地址:https://www.cnblogs.com/j657521265/p/9429271.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!