-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
  • 8

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
  • 67,715
  • 15
  • 98
  • 113