将语句中的单词扣出来,并排序的wordSearch类

这是第一种有排序的情况下,大写字母会先排序结果感觉会要不到自己想要的结果

package com.wordSearch.cc;

import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.Arrays;
/**
 * 
 * @author SunnyBoy
 * @version Time:2017年7月29日 下午8:02:53
 */
public class WordSort {
    public static void main(String[] args) throws IOException {
        String path = "D:\\test/newFourWord.txt";//这里我用的是io流,直接文件对文件生成
        String path1 = "D:\\test/newFourWord1.txt";
        File file = new File(path);
        File file1 = new File(path1);
        BufferedReader br = new BufferedReader(new FileReader(file));//这里用的BufferedReader流,用来分解语句中的单词
        PrintWriter pw = new PrintWriter(file1);//用来输出想要的String之后生成到文件中
        String str = null;
        String[] string = new String[4604];
        int i = 0;
        while ((str = br.readLine()) != null) {
            string[i++] = str;
        }
        Arrays.sort(string);//主要在这里进行排序
        for(int k = 1;k"\r\n");
        }
        pw.close();//最后一定要加上关闭io流
    }
}

第二种无排序,按照源文本的格式向文本中写入

package com.wordSearch.cc;

import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import java.io.PrintWriter;
/**
 * 
 * @author SunnyBoy
 * @version Time:2017年7月29日 下午7:55:39
 */
public class WordFormat {
    public static void main(String[] args) throws IOException {
        String path = "D:\\test/levelFourWord.txt";
        String path1 = "D:\\test/newFourWord.txt";
        File file = new File(path);
        File file1 = new File(path1);
        BufferedReader br = new BufferedReader(new FileReader(file));
        PrintWriter pw = new PrintWriter(file1);
        String str = null;
        while ((str = br.readLine()) != null) {
            int n = 0;
            n = str.indexOf(" ");
            if (n > 0) {
                String s = str.substring(0, n);
                pw.print(s+"\r\n");
            }
            else pw.print(str+"\r\n");
        }
        pw.close();
    }
}

两者的差距主要就是循环中作为判断,并输入到文本中是不一样的方法

你可能感兴趣的:(数据结构)