可以读取.txt文件中的字母的代码

时间:2015-12-14 19:42:20

标签: java text-files bufferedreader filereader

我正在编写一个应该读取简单文本文件的程序,并输出该.txt文件中所有字母的列表,并使用最常用的字母排序到最不常用的字母。

我已经完成了一个正在运行的Java程序的编码,该程序要求输入文件名并输出文件中的文本。但我不确定如何输出字母列表。我不确定具体的是读者类中的哪些方法(如果有的话)可以使用读取.txt文件中每个字母的方法。任何帮助将不胜感激!

这是当前代码:

// Here I import the Bufered Reader and file reader Libraries
// The Buffered Reader library is similar to Scanner Library and 
// is used here to read from a text file. File reader will allow
// the program to access windows file system, get the text file
// and allow the Buufered Reader to read it in.
import java.io.BufferedReader;
import java.io.FileReader;
import java.util.Scanner;

public class TextFileReaderApp
{
    // I added "throws exception" in case there is an an error in the
    // main method, throw an exception, so it can prevent further
    // errors from occuring if java doesnt know the main methods going
    // to throw an error.
    public static void main(String[] args) throws Exception
    {
        // below I diplay a welcome messgae to the user
        System.out.println();
        System.out.println("Welcome to the Text File Reader application!");
        System.out.println();

        // Below I create an instance of the Scanner class to get
        // input from the user.
        Scanner userInput = new Scanner(System.in);
        String selection = "y"; //this is the string variable that's used in
                                //the while loop to continue the program.

        // Below I created a while loop that continues the program if the user
        // keeps selecting y as their selecion
        while (selection.equalsIgnoreCase("y"))
        {
            // this line of code is supposed to ask the user for text file name under
            // the C:/ directory and must not be hidden in any foler.
            System.out.print("Please enter the name of the .txt file: C/");
            FileReader file = new FileReader("C:/" + userInput.next());

            // file object is used as a parameter in buffered reader.
            BufferedReader textReader = new BufferedReader(file);

            // below I create and initialize an object of type string called text that will
            // store whats inside of the text file.
            String text = "";

            // I use the readLine statement to read line after line of the text.
            // Once it has read everything it will return null.
            String lineText = textReader.readLine();

            // code below is a test for me to see if the code above works and is able to read
            // the text inside the file and output it.
            while(lineText != null)
            {
                // this reads the text line for line and ads it to the text variable for output.
                text = text + lineText + "\n";
                lineText = textReader.readLine();
            }
            System.out.println(text);
        }
        // These 3 code lines ask the user if he/she would like to continue with the program.
        System.out.println();
        System.out.print("Continue using the Text File Reader? (y/n): ");
        choice = user_input.next();
        System.out.println();
    }
}

3 个答案:

答案 0 :(得分:0)

如果您需要对字母/字符进行计数,您也可以在行/单词等上进行计数。无需在此处使用Reader。

 for (char c : someString.toCharArray ()) {
     // handle the character
  }

一旦你的文件中有任何字符串就可以工作。

答案 1 :(得分:0)

首先,您可能希望使用StringBuilder而不是String文本,因为它有更好的性能。 “text = text + lineText”将在每次执行时创建另一个String对象,StringBuilder在这种情况下效果更好。)

实现所需内容的一种方法是读取textLine字符的字符,并使用带有所有字母的switchcase块,并将它们添加到包含整数的数组中。例如:

int[] array = new int[26];
switch(character){
case "a": 
    array[0] += 1;
    break;
case "b": 
    array[1] += 1;
    break;
//....
}

依旧...... 最后,您使用一个简单的for循环并打印数组的值。现在你看到你输入了多少次角色。

答案 2 :(得分:0)

这将读取textReader中的所有字符,直到达到EOF或发生异常。

try { for(int i = textReader.read(); i != -1 /* EOF */; i = textReader.read()) { char c = (char) i; // do whatever you want with your char here } } catch(IOException) textReader.close();