Here is my code:
JSP Page
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
<h1><center>Web Site Analizer</center></h1>
<br/>
<form action=http://localhost:8080/WebSiteAnalizer/SiteAnalizer method=post>
Enter the Percentage (0-100): <input type="Text" id="percentage">
<br/><br/><br/>
Enter the Words (Separated from New Line (/n)): <br/>
<textarea id='wordList' value='wordList'></textarea>
<br/><br/>
<input type="submit" value="Submit">
</form>
</body>
</html>
Servlet
public void doPost(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException
{
String[] listOfWords = request.getParameter("wordList").toLowerCase().trim().split("\n"); //Get the List of words
int percentage = Integer.parseInt(request.getParameter("percentage")); // Get the percentage value
int numberOfWordsInProgramHash = 0; //Keep tracks of how many words in "program" per webpage
int primaryKey = 0; //Store the primary key
}
I get the NullPointerException
, when I run this application. Below is the full error
java.lang.NullPointerException
SiteAnalizer.doPost(SiteAnalizer.java:40)
javax.servlet.http.HttpServlet.service(HttpServlet.java:641)
javax.servlet.http.HttpServlet.service(HttpServlet.java:722)
The Line 40 is
String[] listOfWords = request.getParameter("wordList").toLowerCase().trim().split("\n"); //Get the List of words
What is wrong with this code?