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 trialAjay pv
Courses Plus Student 325 PointsI got error when I run this code in my ide
Exception in thread "main" java.lang.NullPointerException: Cannot invoke "java.io.Console.readLine(String, Object[])" because "console" is null at Integer.main(Integer.java:6)
my code
import java.io.; import java.lang.; public class Integer { public static void main(String[] args) { Console console = System.console(); String Name = console.readLine("ENTER YOU Name "); console.printf("%s",Name);
}
}
1 Answer
Ashield Smith
3,300 PointsHello Ajay, Your code looks spot on! You would just want to call on 'console' on your import line
import java.io.Console;
public class Integer { public static void main(String[] args) { Console console = System.console(); String Name = console.readLine("ENTER YOU Name "); console.printf("%s",Name);
} }