我有一個程序,其中讀入一個文本文件,然後輸出文件中的每個單詞,然後是在整個文件中重複的次數。Java程序文本文件問題
-1
A
回答
1
使用下面的代碼。
import java.io.*;
class FileRead {
public static void main(String args[]) {
try {
// Open the file that is the first
// command line parameter
FileInputStream fstream = new FileInputStream("C:\\Users\\Desktop\\formate.txt");
// Get the object of DataInputStream
DataInputStream in = new DataInputStream(fstream);
BufferedReader br = new BufferedReader(new InputStreamReader(in));
String strLine;
//Read File Line By Line
while ((strLine = br.readLine()) != null) {
// Print the content on the console
System.out.println(strLine);
}
//Close the input stream
in.close();
} catch (Exception e) {//Catch exception if any
System.err.println("Error: " + e.getMessage());
}
}
}
0
試試這個代碼:
public static void main(String[] args) throws Throwable
{
File inputFile = new File("input.txt");
File outputFile = new File("output.txt");
Scanner scanner = new Scanner(inputFile);
HashMap<String, Integer> count = new HashMap<String, Integer>();
while (scanner.hasNext())
{
String word = scanner.next();
if (count.containsKey(word))
{
count.put(word, count.get(word) + 1);
}
else
{
count.put(word, 1);
}
}
scanner.close();
BufferedWriter writer = new BufferedWriter(new FileWriter(outputFile));
for (Entry<String, Integer> entry : count.entrySet())
{
writer.write("#" + entry.getKey() + " " + entry.getValue()+"\r\n");
}
writer.close();
}
+0
不能使用緩衝讀取器或HashMap :(我知道它會更容易,但它是一個任務 – Mike
+0
此代碼不使用BufferedReader,它只使用BufferedWriter,唯一的問題就是HashMap。掃描儀班是理想的,你可以使用它,它逐字讀 –
0
這也,這是一個簡單多了,如果你不能使用HashMap的或BufferedReader中:
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.util.LinkedList;
import java.util.Scanner;
public class WordCounter
{
public static void main(String[] args) throws Throwable
{
File inputFile = new File("input.txt");
File outputFile = new File("output.txt");
Scanner scanner = new Scanner(inputFile);
LinkedList<Word> words = new LinkedList<Word>();
while (scanner.hasNext())
{
String word = scanner.next();
addWord(words, word);
}
scanner.close();
WriteToFile(outputFile, words);
}
private static void WriteToFile(File outputFile, LinkedList<Word> words) throws IOException
{
BufferedWriter writer = new BufferedWriter(new FileWriter(outputFile));
for (Word word : words)
{
writer.write("#" + word.getWord() + " " + word.getCount() + "\r\n");
}
writer.close();
}
private static void addWord(LinkedList<Word> words, String word)
{
for (Word aWord : words)
{
if (aWord.getWord().equals(word))
{
aWord.incrementCount();
return;
}
}
words.add(new Word(word, 1));
}
}
class Word
{
private String word;
private int count;
public Word(String word, int count)
{
this.word = word;
this.count = count;
}
public String getWord()
{
return word;
}
public void setWord(String word)
{
this.word = word;
}
public int getCount()
{
return count;
}
public void setCount(int count)
{
this.count = count;
}
public void incrementCount()
{
count++;
}
@Override
public String toString()
{
return "Word: " + word + " Count: " + count;
}
}
相關問題
- 1. 寫入文本文件問題Java
- 2. 從文本文件導入Java問題
- 3. 程序文件(x86)問題
- 4. Java文件問題
- 5. 文件問題Java
- 6. Java程序讀取文本文件
- 7. 程序不掃描文本文件(Java)
- 8. Subclipse問題:運行.java文件作爲Java應用程序
- 9. 文本文件的問題
- 10. ASCII英文文本/ ASCII C程序文本問題
- 11. 閱讀/寫入文本文件程序時遇到問題?
- 12. Java - 多線程和文件問題
- 13. Java文件文件I/O問題
- 14. Java文件權限問題
- 15. Java文件讀取問題
- 16. java生成文件問題
- 17. 的Java:問題從文件
- 18. Java文件損壞問題
- 19. java文件讀取問題
- 20. 問題在Java application.properties文件
- 21. Java文件路徑問題
- 22. Java文件路徑問題
- 23. Java文件讀取問題
- 24. Java中標題文本的問題
- 25. Java腳本:雙引號文本問題
- 26. GAE上的Java聊天應用程序,將文件寫入文件的問題
- 27. 在Java中使用默認程序打開文件的問題
- 28. Java應用程序服務器遇到文件系統問題
- 29. Java程序問題
- 30. 將問題附加到20個問題的文本文件中 - Java
在我不能用一個BufferedReader文件。我相信這是我的while循環。它逐行閱讀而不是閱讀整個文件。 – Mike