Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Java Java Objects (Retired) Harnessing the Power of Objects Incrementing and Decrementing

error: could not find or load the main class example

I have two files open, that is what my instructor told me to do. For some reason, my console cannot find or load the main class example.

File one ( Example.java ) reads:

public class Example {

public static void main(String[] args) {
    // Your amazing code goes here...
    System.out.println("We are making a new pez");
    PezDispenser dispenser = new PezDispenser ("Yoda");
    System.out.printf("The dispenser chracter is %s",
                      dispenser.getCharacterName());
  if (dispenser.isEmpty()) {
  System.out.println("It's empty");
  }
  System.out.println("Loading...");
  dispenser.load();
  if (!dispenser.isEmpty()) {
    System.out.println("It's no longer empty!");
    }
}

}

File two ( PezDispenser.java ) reads:

public class PezDispenser { public static final int MAX_PEZ = 12; private String mCharacterName; private int mPezCount;

public PezDispenser (String characterName) { mCharacterName= characterName; mPezCount = 0; }

public boolean isEmpty () { return mPezCount == 0; }

public void load() { mPezCount = MAX_PEZ; }

public String getCharacterName() { return mCharacterName; }

}

1 Answer

Alexander Nikiforov
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Alexander Nikiforov
Java Web Development Techdegree Graduate 22,175 Points

Your code is correct. The problem is that you type

java example

This gives

Error: Could not find or load main class example  

Remember bash, i.e. workspace environment is case sensitive, so please write

java Example