문장의 단 어 를 빼 고 정렬 하 는 wordSearch 클래스
4968 단어 데이터 구조
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
");
}
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
");
}
else pw.print(str+"\r
");
}
pw.close();
}
}
이들 의 차 이 는 주로 순환 에서 판단 하고 텍스트 에 입력 하 는 것 이 다른 방법 이다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
정수 반전Udemy 에서 공부 한 것을 중얼거린다 Chapter3【Integer Reversal】 (예) 문자열로 숫자를 반전 (toString, split, reverse, join) 인수의 수치 (n)가 0보다 위 또는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.