YashSmith -12 Newbie Poster Banned

My Java application crashes with a NullPointerException when trying to access an object property. Here's the problematic code:

    public class Test {
        public static void main(String[] args) {
            String text = null;
            System.out.println(text.length()); // NullPointerException here
        }
    }

How can I properly handle this scenario?

rproffitt commented: That doesn't look like python. Fix your tags or call out the language. -4
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.