我有一个servlet。在它中我形成一条线,当我输入浏览器链接时,他告诉我旋转线。一切都好。现在我想创建一个字符串数组,并根据链接中的参数旋转特定行。怎么做?
@WebServlet("/goods")
public class GoodsServlet extends HttpServlet {
@Override
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html");
PrintWriter out = response.getWriter();
out.print("{\"name\":\"Pavel\",\"sname\":\"Petrashov\",\"age\":24,\"params\":{\"heigth\":188, \"weight\":72, \"strong\":100}}");
}
}
我希望
List<String> list = new ArrayList<String>();
list.add("{\"name\":\"Pavel\",\"sname\":\"Petrashov\",\"age\":24,\"params\":{\"heigth\":188, \"weight\":72, \"strong\":100}}");
list.add("{\"name\":\"Bill\",\"sname\":\"Gey\",\"age\":99,\"params\":{\"heigth\":188, \"weight\":70, \"strong\":100}}");
list.add("{\"name\":\"Uill\",\"sname\":\"Smitt\",\"age\":12,\"params\":{\"heigth\":188, \"weight\":99, \"strong\":100}}");
并确保我的引用http://localhost:666/sg/goods
采用了一些参数,具体取决于返回数组元素
答案 0 :(得分:1)
你的意思是依赖于GET参数你想要打印出列表中的一个字符串吗?如果那就是你想要的
String myParameter = request.getParameter("param");
会给你get参数。将参数作为查询字符串传递到网址,如http://localhost:666/sg/goods?param=2
。
现在使用参数从列表中获取字符串
try{
int index = Integer.parseInt(myParameter);
out.println(list.get(index));
} catch(IndexOutOfBoundsException|NumberFormatException ex){
System.err.println("Invalid get parameter");
}