私は学校の課題に取り組んでいます。プログラムはユーザーにファイル名を尋ね、そのファイル内の文字数、単語数、および行数を数えます。次に、次のファイルの名前を尋ねます。ユーザーが存在しないファイルを入力すると、プログラムは、処理されたすべてのファイルと存在するすべての文字、単語、および行の合計数を出力します。
だから私はプログラムを書きましたが、いくつかのエラーが発生しています。これがカウンタープログラムです。オンラインでエラーが発生しています
private FileCounter counter;
と
private boolean done;
エラーは次のように述べています: The FieldCounter.done is never read local . 前の行も同様です。この警告が表示される理由がわかりません。
プログラムの残りの部分:
import java.util.Scanner;
import java.io.FileReader;
import java.io.FileNotFoundException;
/**
* A class to count the number of characters, words, and lines in files.
*/
public class FileCounter
{
/**
Constructs a FileCounter object.
*/
public FileCounter()
{
words = 0;
lines = 0;
chars = 0;
input = "";
}
/**
Processes an input source and adds its character, word, and line
counts to this counter.
@param in the scanner to process
*/
public void read(Scanner in) throws FileNotFoundException
{
boolean done = false;
while (!done)
{
while(in.hasNextLine())
{
lines++;
words++;
int j = 0;
file = in.nextLine();
input = input + file;
for(int i = 1; i < file.length(); i++)
{
if(file.substring(j, i).equals(" "))
{
words++;
}
j++;
}
}
char[] array = input.toCharArray();
int num = array.length;
chars += num;
if(in.hasNextLine() == false)
done = true;
}
}
/**
Gets the number of words in this counter.
@return the number of words
*/
public int getWordCount()
{
return words;
}
/**
Gets the number of lines in this counter.
@return the number of lines
*/
public int getLineCount()
{
return lines;
}
/**
Gets the number of characters in this counter.
@return the number of characters
*/
public int getCharacterCount()
{
return chars;
}
private String input;
private int words;
private FileCounter counter;
private int lines;
private boolean done;
private int chars;
private String file;
}
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.util.Scanner;
/**
This class prints a report on the contents of a number of files.
*/
public class FileAnalyzer
{
public static void main(String[] args)
{
Scanner in = new Scanner(System.in);
FileCounter counter = new FileCounter();
boolean more = true;
while (more)
{
System.out.print("Please enter the next filename, or <Enter> to quit: ");
String filename = in.nextLine();
if (filename.length() > 0)
{
try
{
FileReader fileRead = new FileReader(filename);
Scanner fileInput = new Scanner(fileRead);
counter.read(fileInput);
}
catch (FileNotFoundException fnfe)
{
System.out.println("File " + filename + " was not found: " + fnfe);
}
}
else
{
more = false;
}
}
System.out.println("Characters: " + counter.getCharacterCount());
System.out.println("Words: " + counter.getWordCount());
System.out.println("Lines: " + counter.getLineCount());
}
}