Here is my code :
<%
response.setContentType("application/json");
JSONObject json = new JSONObject();
Employee employee = new Employee("RAM","ram@gmail.com");
json.put("employee",employee);
out.println(json);
%>
i need to set the json values came from jsp into my html file. By parsing with js. is there any idea i'm stucked over here...
if you provide code as response very helpful for me..