-1

I cannot run my main method.

when I input: cd /Users/apple/Desktop/java/asd/javacolon/bin/javacolon

then input: java demo

error in terminal occurred: Error: Could not find or load main class demo enter image description here

overpro
  • 49
  • 6

1 Answers1

1

You have to type cd /Users/apple/Desktop/java/asd/javacolon/bin/

and then

java javacolon.demo

Because the package name is part of the classname

Jens
  • 63,364
  • 15
  • 92
  • 104