What is the problem in my code?
orderIsbnDetails.setIsbn(request.getParameter("isbn"+ i).trim());
This line throws NullpointerException
What is the problem in my code?
orderIsbnDetails.setIsbn(request.getParameter("isbn"+ i).trim());
This line throws NullpointerException
request.getParameter("isbn"+ i)
is null.
null.trim()
causes NullPointerException
.