简单程序线程中的异常" main" java.lang.ArrayIndexOutOfBoundsException:0

时间:2014-04-24 21:14:33

标签: java eclipse

任何人都可以提供帮助,我正在使用eclipse,并且在我编写的每个新类中都收到此错误。有什么问题。

package joe;
public class Joe {
    public static void main(String args[]){
        System.out.println("hello world");
    }
}

错误

Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 0
    at com.ibm.icu.text.BreakDictionary.main(BreakDictionary.java:40)

1 个答案:

答案 0 :(得分:2)

转到文本编辑器上方工具栏中的运行按钮。如果您点击旁边的小箭头并打开下拉列表,您将看到您没有运行您认为自己正在运行的内容。如果要为新课程添加新的运行配置,可以通过单击该下拉列表中的Run configurations...链接来执行此操作。

我认为Eclipse的默认行为是运行您当前在文本编辑器中查看的任何类。如果这种情况没有发生,请考虑重新启动Eclipse。这在过去发生在我身上。