gpt4 book ai didi

java - 如何解决 '.class' 预期错误?

转载 作者:行者123 更新时间:2023-12-01 16:34:41 26 4
gpt4 key购买 nike

目前,我在第 40 行遇到错误 - 需要“.class”。非常感谢任何帮助。

    import java.io.*; // For File class and FileNotFoundException
import java.util.Scanner; //For the Scanner class
import javax.swing.JOptionPane; // For the JOptionPane class
/**
* Write a description of class PartB here.
*
* @Hubble, Kieran
* @Version 0.1
*/
public class PartB
{
public static void main(String[] args) throws FileNotFoundException
{
File file; //for file input
Scanner inputFile; //for file input
String fileName; //to hold a file name
String paragraph; //to extract the letter frequencies

//get a file name from the user.
fileName = JOptionPane.showInputDialog("enter " + " the name of the file");

//attempt to open the file.
try
{
file = new File(fileName);
inputFile = new Scanner(file);
JOptionPane.showMessageDialog(null, "the file was found.");

// read the input file, processing data one line at a time
while(inputFile.hasNext())
{
String str = inputFile.nextLine();
System.out.println(str);
}

//create an Output file
PrintWriter outputFile = new PrintWriter("crackedcode.txt");

while(paragraph.length() > 0)
// error is occurring on the next line (line 40)
int[]; letterCount = new int[26];
for (int count = 0; count < paragraph.length; count++) {
String current = paragraph[count];
char[] letters = current.toCharArray();
}

for (int count2 = 0; count2 < letters.length; count2++) { char lett = letters[count2]; if ( (lett >= 'A') & (lett <= 'Z') ) {
letterCount[lett - 'A']++;
}
}


for (char count = 'A'; count <= 'Z'; count++) {
System.out.print(count + ": " +
letterCount[count - 'A'] +
" ");
}
System.out.println();

// close the input file
inputFile.close();
}

catch (FileNotFoundException e)
{
JOptionPane.showMessageDialog(null, "file not found.");
}

JOptionPane.showMessageDialog(null, "done.");
System.exit(0); //terminate program
}

}

最佳答案

删除分号

int[]; letterCount = new int[26];

应该是

int[] letterCount = new int[26];

此外,您需要用 {} 包裹 while block (从其上面的行开始)

关于java - 如何解决 '.class' 预期错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10534660/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com