我正试图在eclipse ide中运行以下程序:
public class SixthWord {
public static void main(String[] args)
{
String s1 = "JavaServer Pages is going to dominate the world!";
int i = 0;
int index = 0;
int beginIndex = 0, endIndex = 0;
for( int j = 0; j < 6; j++)
{
int k = s1.indexOf(' ', index);
index = k;
if(j == 4)
{
beginIndex = k;
}
if (j == 5)
{
endIndex = k;
}
}
System.out.println("The sixth word in the above sentence is: " + s1.subSequence(beginIndex, endIndex));
}
}
问题是如果我尝试导航到命令提示符中的特定文件夹并使用javac和java命令执行它,它运行正常并提供输出。但是当我试图通过eclipse运行时它会给我以下错误“无法找到主要类:SixthWord。程序将退出”。这段代码有一个main方法,这个代码是在我的系统上的任何其他程序的默认包中创建的。所有其他节目都很好。
有什么想法吗?