I'm trying to run my java program in Mac terminal. This picture shows my contents in Netbeans, I wanna run "SeqList":
First I code
javac SeqList.java
then it successfully create SeqList.class,whose classpath is /Users/andychao/Desktop/JAVVVVA/DataStractureTest/src/homework/SeqList.class
(my project name is "DataStractureTest",my package name is "homework")
But when I tried
java SeqList
or
java homework.SeqList
or even
java /Users/andychao/Desktop/JAVVVVA/DataStractureTest/src/homework/SeqList
I always received
Error: Could not find or load main class SeqList
I read other people's answers to this problem,but still cannot figure out it.
Is there anybody who can give me some specific advice? THX!