1. 程式人生 > >將語句中的單詞扣出來,並排序的wordSearch類

將語句中的單詞扣出來,並排序的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<i;k++) { pw.print(string[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();
    }
}

兩者的差距主要就是迴圈中作為判斷,並輸入到文字中是不一樣的方法