package com.qm;

import java.io.IOException;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.HashMap;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class FindAll extends HttpServlet {
	@Override
	protected void doGet(HttpServletRequest request, HttpServletResponse response)
			throws ServletException, IOException {
		request.setCharacterEncoding("UTF-8");
		response.setCharacterEncoding("UTF-8");
		User u1=new User("全敏","男",18);
		User u2=new User("张三","女",16);
		User u3=new User("李四","女",19);
		User u4=new User("王五","男",20);
		ArrayList<User> userList=new ArrayList<User>();
		userList.add(u1);
		userList.add(u2);
		userList.add(u3);
		userList.add(u4);
		Object userobj=JsonUtil.toJson(userList);
		HashMap<String,Object> json=new HashMap<String,Object>();
		json.put("userobj", userobj);
		PrintWriter out = response.getWriter();
	    out.write(JsonUtil.toJson(json));
	    out.flush();
	    out.close();
	}
	@Override
	protected void doPost(HttpServletRequest request, HttpServletResponse response)
			throws ServletException, IOException {
		this.doGet(request, response);
	}
}
最近下载更多
charleswang  LV7 2022年6月16日
dengjunjun  LV15 2022年3月29日
IT达人  LV22 2021年7月7日
小白jmhuang  LV12 2021年5月28日
锐vi123  LV11 2021年1月5日
zdl638  LV6 2020年4月25日
小肥羊  LV16 2019年11月3日
fff方法ff反反  LV6 2019年10月30日
陆信乾  LV6 2019年8月30日
tonghao  LV18 2019年7月30日
最近浏览更多
颜菜菜  LV2 2023年12月19日
xiongwei11231  LV8 2023年12月2日
ling7314  LV4 2023年5月29日
renyuan  LV9 2022年12月11日
青灯呀  LV10 2022年6月23日
charleswang  LV7 2022年6月16日
赵欣婷  LV4 2022年5月26日
阿布屋脊  LV7 2022年5月7日
chenzhen23  LV7 2022年4月20日
dengjunjun  LV15 2022年3月29日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友