4

我正在尝试从用户那里获取输入,并打印文本文件中的行数、单词数和字符数。但是,只有字数是正确的,它总是为行和字符打印 0。

import java.util.*;
import java.io.*;

public class TextFileInfoPrinter
{  
    public static void main(String[]args) throws FileNotFoundException        
    { 
            Scanner console = new Scanner(System.in);           

            System.out.println("File to be read: ");
            String inputFile = console.next();

            File file = new File(inputFile);
            Scanner in = new Scanner(file);

            int words = 0;
            int lines = 0;
            int chars = 0;

            while(in.hasNext())
            {
                in.next();
                words++;
            }

            while(in.hasNextLine())
            {
                in.nextLine();
                lines++;
            }

            while(in.hasNextByte())
            {
                in.nextByte();
                chars++;
            }

            System.out.println("Number of lines: " + lines);
            System.out.println("Number of words: " + words);
            System.out.println("Number of characters: " + chars);
    }
}
4

10 回答 10

6

尝试

    int words = 0;
    int lines = 0;
    int chars = 0;
    while(in.hasNextLine())  {
        lines++;
        String line = in.nextLine();
        chars += line.length();
        words += new StringTokenizer(line, " ,").countTokens();
    }
于 2013-03-06T05:13:47.957 回答
2

in.next();正在消耗第一个中的所有行while()。在第一个 while 循环结束后,输入流中不再有要读取的字符。

您应该while 循环计数行中嵌套您的字符和字数计数。

于 2013-03-06T05:05:57.373 回答
1

我认为最好的答案是

int words = 0;
int lines = 0;
int chars = 0;
while(in.hasNextLine())  {
    lines++;
    String line = in.nextLine();
   for(int i=0;i<line.length();i++)
    {
        if(line.charAt(i)!=' ' && line.charAt(i)!='\n')
        chars ++;
    }
    words += new StringTokenizer(line, " ,").countTokens();
}
于 2014-10-29T00:17:54.810 回答
1

你认为有什么原因吗:

while(in.hasNext())
{
    in.next();
    words++;
}

不会消耗整个输入流?

会这样做,这意味着您的其他两个while循环将永远不会迭代。这就是为什么您的单词和行的值仍然设置为零的原因。

您最好一次读取文件一个字符,每次通过循环增加字符数,并检测字符以决定是否增加其他计数器。

基本上,无论你在哪里找到 a \n,增加行数 - 如果流中的最后一个字符不是 ,你可能也应该这样做\n

而且,每当您从空白转换到非空白时,请增加字数(在流开始时可能会有一些棘手的边缘情况处理,但这是一个实现问题)。

您正在查看类似于以下伪代码的内容:

# Init counters and last character

charCount = 0
wordCount = 0
lineCount = 0
lastChar = ' '

# Start loop.

currChar = getNextChar()
while currChar != EOF:
    # Every character counts.

    charCount++;

    # Words only on whitespace transitions.

    if isWhite(lastChar) && !isWhite(currChar):
        wordCount++

    # Lines only on newline characters.

    if currChar == '\n':
        lineCount++;
    lastChar = currChar
    currChar = getNextChar()

# Handle incomplete last line.

if lastChar != '\n':
    lineCount++;
于 2013-03-06T05:07:07.107 回答
0
while(in.hasNextLine())  {
        lines++;
        String line = in.nextLine();
        for(int i=0;i<line.length();i++)
        {
            if(line.charAt(i)!=' ' && line.charAt(i)!='\n')
        chars ++;
        }
        words += new StringTokenizer(line, " ,;:.").countTokens();
    }
于 2013-03-06T11:35:15.983 回答
0

我同意@Cthulhu 的回答。在您的代码中,您可以重置您的Scanner对象 ( in)。

in.reset();

这将在文件的第一行重置您的 in 对象。

于 2013-03-06T05:17:06.783 回答
0

您可以使用正则表达式为您计数。

String subject = "First Line\n Second Line\nThird Line";  
Matcher wordM = Pattern.compile("\\b\\S+?\\b").matcher(subject); //matches a word
Matcher charM = Pattern.compile(".").matcher(subject); //matches a character
Matcher newLineM = Pattern.compile("\\r?\\n").matcher(subject); //matches a linebreak

int words=0,chars=0,newLines=1; //newLines is initially 1 because the first line has no corresponding linebreak

while(wordM.find()) words++;
while(charM.find()) chars++;
while(newLineM.find()) newLines++;

System.out.println("Words: "+words);
System.out.println("Chars: "+chars);
System.out.println("Lines: "+newLines);
于 2013-03-06T05:19:40.587 回答
0

当执行第一个 while 时,文件指针设置为文件末尾。尝试这个:

Scanner in = new Scanner(file);


        while(in.hasNext())
        {
            in.next();
            words++;
        }
        in = new Scanner(file);
        while(in.hasNextLine())
        {
            in.nextLine();
            lines++;
        }
        in = new Scanner(file);
        while(in.hasNextByte())
        {
            in.nextByte();
            chars++;
        }
于 2013-03-06T05:07:42.380 回答
0

我不是 Java 专家,但我认为.hasNext,.hasNextLine.hasNextByte都使用和递增相同的文件位置指示符。您需要通过创建一个新的扫描仪来重置它,如 Aashray 提到的那样,或者使用 RandomAccessFile 并file.seek(0);在每个循环后调用。

于 2013-03-06T05:12:31.400 回答
0
import java.io.*;
class wordcount
{
    public static int words=0;
    public static int lines=0;
    public static int chars=0;
    public static void wc(InputStreamReader isr)throws IOException
    {
        int c=0;
        boolean lastwhite=true;
        while((c=isr.read())!=-1)
        {
            chars++;
            if(c=='\n')
                lines++;
            if(c=='\t' || c==' ' || c=='\n')
                ++words;
            if(chars!=0)
                ++chars;
        }   
       }
    public static void main(String[] args)
    {
        FileReader fr;
        try
        {
            if(args.length==0)
            {
                wc(new InputStreamReader(System.in));
            }
            else
            {
                for(int i=0;i<args.length;i++)
                {
                    fr=new FileReader(args[i]);
                    wc(fr);
                }
            }

        }
        catch(IOException ie)
        {
            return;
        }
        System.out.println(lines+" "+words+" "+chars);
    }
}
于 2016-11-27T03:53:31.630 回答