我有一个 Servlet,其中我有两个来自数据库的用户名和密码字段,现在我想在 ExtJs 中查看网格中的数据,我不知道该怎么做..
public class LoginServlet extends HttpServlet {
try {
String Username=request.getParameter("username");/* i want to show these two data to the grid
String Password=request.getParameter("password");*/
JSONObject JSONobj=new JSONObject(); //this is json Object
JSONArray json=new JSONArray();//this is json array
JSONObject obj=new JSONObject();
obj.put("username",UserVO.getUsername());
obj.put("password",UserVO.getPassword());
json.add(obj);
JSONobj.put("employee", json);
response.sendRedirect("data-retrive.html");
} catch(Exception e){
System.out.println("Exception"+e);
}
}