我正在编写一个读取给定文件的频率计数器,它返回文件中每个字母的频率(百分比)。到目前为止,我的代码会读取文件并列出文件中出现的每个字母的计数。我无法弄清楚如何组合所有计数以生成百分比。以下是我的代码,如果我没有正确使用代码块,请原谅。还在学习所有这些东西。
import java.io.File;
import java.util.*;
public class FrequencyCounter
{
public static void main(String[] args )
{
char[] capital = { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J','K', 'L', 'M', 'N',
'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'};
char[] small = { 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n',
'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z' };
Scanner scan;
try
{
scan = new Scanner(new File("c://Users//Mikel//Desktop//School Work//CIS407//Week1//mary.txt"));
}
catch (Exception e)
{
System.out.println("File not found");
return;
}
int[] count = new int[26];
while(scan.hasNextLine())
{
String line = scan.nextLine();
System.out.println("Line read: " + line);
char[] digit = line.toCharArray();
for(int i = 0; i < digit.length; i++)
{
for(int j = 0; j < 26; j++)
{
if(digit[i] == capital[j] || digit[i] == small[j])
{
count[j]++;
break;
}
}
}
}
for (int i = 0; i < 26; i++)
{
System.out.print(" " + capital[i]);
System.out.println(" " + (count[i]));
}
}
}