Моя программа предполагает считать появление каждого символа в файле, игнорируя верхний и нижний регистр. Метод, который я написал, это:
public int[] getCharTimes(File textFile) throws FileNotFoundException {
Scanner inFile = new Scanner(textFile);
int[] lower = new int[26];
char current;
int other = 0;
while(inFile.hasNext()){
String line = inFile.nextLine();
String line2 = line.toLowerCase();
for (int ch = 0; ch < line2.length(); ch++) {
current = line2.charAt(ch);
if(current >= 'a' && current <= 'z')
lower[current-'a']++;
else
other++;
}
}
return lower;
}
И распечатывается с помощью:
for(int letter = 0; letter < 26; letter++) {
System.out.print((char) (letter + 'a'));
System.out.println(": " + ts.getCharTimes(file));
}
Где ts - объект TextStatistic
, созданный ранее в моем основном методе. Однако, когда я запускаю свою программу, вместо того, чтобы печатать количество часто встречающихся символов, она печатает:
a: [[email protected]
b: [[email protected]
c: [[email protected]
d: [[email protected]
e: [[email protected]
f: [[email protected]
И я не знаю, что я делаю неправильно.