本文介紹了顛倒txt文件的行序的處理方法,對(duì)大家解決問題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!
問題描述
我需要導(dǎo)入一個(gè)文本文件并導(dǎo)出一個(gè)各行順序相反的文本文件
示例輸入:
abc
123
First line
預(yù)期輸出:
First line
123
abc
這就是我到目前為止所擁有的。它顛倒了行的順序,但不是行的順序。
如有任何幫助,將不勝感激
import java.io.File;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.Scanner;
public class reversetext {
public static void main(String[] args) throws IOException {
try {
File sourceFile = new File("in.txt");//input File Path
File outFile = new File("out.txt");//out put file path
Scanner content = new Scanner(sourceFile);
PrintWriter pwriter = new PrintWriter(outFile);
while(content.hasNextLine()) {
String s = content.nextLine();
StringBuffer buffer = new StringBuffer(s);
buffer = buffer.reverse();
String rs = buffer.toString();
pwriter.println(rs);
}
content.close();
pwriter.close();
}
catch(Exception e) {
System.out.println("Something went wrong");
}
}
}
推薦答案
我能得出的最簡(jiǎn)單的答案是,使用JAVA 7+,而不是依賴像Stack
這樣的過時(shí)構(gòu)建塊:
private static final String INPUT_FILE = "input.txt";
private static final String OUTPUT_FILE = "output.txt";
private static final String USER_HOME = System.getProperty("user.home");
public static void main(String... args) {
try {
try (PrintWriter writer = new PrintWriter(Files.newBufferedWriter(Paths.get(USER_HOME + "/" + OUTPUT_FILE)))) {
Files
.lines(Paths.get(USER_HOME + "/" + INPUT_FILE))
.collect(Collectors.toCollection(LinkedList::new))
.descendingIterator()
.forEachRemaining(writer::println);
}
} catch (Exception e) {
e.printStackTrace();
System.exit(1);
}
}
只需讀入輸入文件并獲取String
(Files#lines
)中的內(nèi)容流。然后使用降序迭代器將它們收集到LinkedList
中,循環(huán)遍歷它們并將它們寫出到輸出文件中。
這篇關(guān)于顛倒txt文件的行序的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,