當咱們提交一個checkbox這樣的集合數據時,咱們能夠在對應的action中採用數組或者list的形式進行接收,以後在進行處理數組或者list裏面的數據。例如:數組
action中的代碼:jsp
private String username; private String[] hobbies; private List<String> games; public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String[] getHobbies() { return hobbies; } public void setHobbies(String[] hobbies) { this.hobbies = hobbies; } public String execute(){ System.out.print(username+": "); for(String str:hobbies){ System.out.print(str+" "); } System.out.println(); System.out.println("games"+games); return "success"; } public List<String> getGames() { return games; } public void setGames(List<String> games) { this.games = games; } |
jsp也面的數據:post
<form action="UserAction" method="post"> 用戶名:<input type="text" name="username"/> 愛好:<input type="checkbox" name="hobbies" value="bootball" >足球 <input type="checkbox" name="hobbies" value="basketball" >籃球 <input type="checkbox" name="hobbies" value="pingpong" >乒乓球 <input type="checkbox" name="hobbies" value="baseball" >棒球<br> 遊戲愛好:<input type="checkbox" name="games" value="lol" >LOL <input type="checkbox" name="games" value="dota" >DOTA <input type="checkbox" name="games" value="cs" >反恐精英 <input type="checkbox" name="games" value="war" >魔獸爭霸<br> <input type="submit" vlaue="提交"> </form> |
而後當咱們須要提交一個對象的時候,struts並無實現這樣的功能,這須要咱們本身進行實現,咱們能夠經過分紅不一樣的數組進行提交而後再action當中在進行處理存放到對象當中。this