已采纳回答 / 无动于衷
得到goods(Map类型的引用)里 Key是item的Value值。像是这样:这是goods Key | Value a | 1 b | 2 item | 3goods.get(item)=3
2015-09-23
已采纳回答 / _潇潇暮雨
在Servlet中无法使用jsp内置对象,但是可以通过request.getSession()取得session啊。在jsp页面中可以使用EL表达式或者session.getAttribute()取得用户名。
2015-09-21
if(shoppingList.containsKey(i)){
this.shoppingList.replace(i, this.shoppingList.get(i)+amount);
return true;
}
this.shoppingList.replace(i, this.shoppingList.get(i)+amount);
return true;
}
2015-09-20
在reg.jsp中跳转方式是post,直接跳转到RegServlet.java的doPost方法就好啦, 可为什么还要在RegServlet.java的doGet方法中写doPost方法呢?
2015-09-19