in terms of using the rs.getString method do i have to use
== null or
rs.getString().equals null
if i want to test it prior to displaying it on the jsp page ?
also would i have to use the <c:else> tag after this then would the ocde know that if it didn't fulfill the ifthen condition then it shouldn't process ?
cheers
chris
One day all greenhorns will run free ...
Dirk Schreckmann
Sheriff
Joined: Dec 10, 2001
Posts: 7023
posted
0
Use == to test for a null reference, and the equals method to test a non-null reference for its value. Note that if you were to invoke any method, including the equals method, on a null reference, you'll get a NullPointerException.
For questions specific to JSPs, mosey on over to the JSP forum.
rs.getString() returns a String. Unless you want to check for null on a String you should always use equals.
Remember that the <%= ... %gt; block can only output Strings to the JSP output stream, so the result of your statement must be a String or be capable of being converted into a meaningful String using toString().
42
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.