これでできることはすべて試しましたが、それでも解決策が見つかりませんでした。これがエラーです。16行目のnullを変更しようとしましたが、役に立ちませんでした。私は新しいJavaですプログラマーなので、この言語を使用した経験はあまりありません。すべての助けに感謝します!
スレッド「メイン」での例外 java.lang.NumberFormatException: DebugEight4.main(DebugEight4.ジャワ:11)
import javax.swing.*;
public class DebugEight4
{
public static void main(String[] args)
{
int x = 0, y;
String array[] = new String[100];
String entry;
int i = Integer.parseInt(array[1]);
final String STOP = "XXX";
StringBuffer message = new
StringBuffer("The words in reverse order are\n");
entry = JOptionPane.showInputDialog(null,
"Enter any word\n" +
"Enter " + STOP + " when you want to stop");
while(!(entry.equals(STOP)))
{
array[x] = entry;
x++;
entry = JOptionPane.showInputDialog(null,
"Enter another word\n" +
"Enter " + x + " when you want to stop");
}
for(y = 0; y > 0; ++y)
{
message.append(array[y]);
message.append("\n");
}
JOptionPane.showMessageDialog(null, message);
}
}