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 Basics Using your New Tools Multiple Strings

Adan Huerta
Adan Huerta
3,209 Points

Nothing printing in my Console?

When I code anything that has console.printf("Anything");
nothing appears in the console.

I start with javac Filename.java then java filename

And still nothing will print. Sometimes I get an error < Could not find or load main class directory. >

Why is this happening?

Grigorij Schleifer
Grigorij Schleifer
10,365 Points

Hi Adam,

have you imported a Console class? Do you have a main method .... ?

Can you give us your code, so we can look at it?

Grigorij

Adan Huerta
Adan Huerta
3,209 Points

This is the code I am using:

import java.io.Console;

public class TreeStory {

public static void main(String[] args) {
    Console console = System.console();
    /*  Some terms:
        noun - Person, place or thing
        verb - An action
        adjective - A description used to modify or describe a noun
        Enter your amazing code here!
    */
    String name = console.readLine("Enter your name:   ");
    String adjective = console.readLine("Enter an adjective:   ");
    console.printf("%s is very %s", name, adjective);
}

}

2 Answers

Grigorij Schleifer
Grigorij Schleifer
10,365 Points

Hi again :)

Here my code:

import java.io.Console;

public class TreeStory {

public static void main(String[] args) {
    Console console = System.console();

    String name = console.readLine("Enter your name:   ");
    String adjective = console.readLine("Enter an adjective:   ");
    console.printf("%s is very %s", name, adjective);
   }
}

And my input into terminal:

treehouse:~/workspace$ javac TreeStory.java
// and then 
treehouse:~/workspace$ java TreeStory

The output is:

Enter your name:   Adan
Enter an adjective:   fancy
Adan is very fancy

I don´t know what I am doing different. But it works ....

Let me know if you could find the trick ....

Try to reload the workspace ...

Grigorij

Adan Huerta
Adan Huerta
3,209 Points

I swear I entered that exactly. I reloaded the workspace and now it's responding! Finally!!

Thanks Grigorij!

Grigorij Schleifer
Grigorij Schleifer
10,365 Points

This is workspace magic !!!!

Glad you solved it, coding bro !