• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Compiling in Terminal on MacOS High Sierra

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm going through the first chapter of the OCA SE 8 book by Boyarsky and Selikoff. It suggests that I create 2 files in terminal and then compile and run the result.

ClassA.java:


ClassB.java:


The files are in /Users/me/tmp/packagea and /Users/me/tmp/packageb.
From the /Users/me/tmp directory I use

javac packagea/ClassA.java packageb/ClassB.java

to compile the code, and then

java packageb.ClassB

to run it.

All works well until I try to run the code, at which point I get:


Error: Could not find or load main class packageb.ClassB



Any ideas would be welcome. If I can't get through the first chapter I'm doomed!

 
Marshal
Posts: 80673
478
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Welcome to the Ranch

Have you copied the code and instructions exactly? It says packageab in one place and packageb in the other.
 
Charles Cavin
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Campbell - thank you!

You have good eyes, while I, apparently, don't.


At least I know my system is working....
 
Campbell Ritchie
Marshal
Posts: 80673
478
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Everybody makes that sort of mistake every now and again, and . . .
“That's a pleasure
 
reply
    Bookmark Topic Watch Topic
  • New Topic