データベースから取得したユーザー名とパスワードの 2 つのフィールドがあるサーブレットがあり、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);
}
}