Hello Guys! Posting this thread based on the topic of NumberFormatException null...
This is how it goes.
Im calling records from the db into a JSP.
String FirstName = Results.getString("FirstName");
String MiddleName = Results.getString("MiddleName");
String LastName = Results.getString("LastName");
int BorrowerID = Integer.parseInt(Results.getString("BorrowerID"));
When i try to call it in the JSP like this:
<input type="text" name="BorrowerID" value="<%=Book.getBorrowerID()%>"
It gives me NumberFormatException Null.
What To Do About This? I all need Your Help!
All REPLIES Welcome!