程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> struts2 action中獲取jsp頁面的參數的方法

struts2 action中獲取jsp頁面的參數的方法

編輯:關於JSP

 

實例:現在jsp頁面傳遞一個名為username的參數到action中

url:   http://localhost:8080/StudentSystem/role_list.action?username=1321312

一、通過get set方法獲取

在對應的action類中定義同名變量,並生成set get方法,那麼參數將會自動獲取值

String username;

 public String getUsername()
 {
  return username;
 }

 public void setUsername(String username)
 {
  this.username = username;
 }

System.out.println(username);//結果為1321312

 

二、通過ServletActionContext獲取//導入import org.apache.struts2.ServletActionContext;

 HttpServletRequest reqeust= ServletActionContext.getRequest();

  String username=reqeust.getParameter("username");//字符串

//url:   http://localhost:8080/StudentSystem/role_list.action?username=1321312&username=34343

  String[] username=reqeust.getParameterValues("username");//字符串數組

  System.out.println(username);//結果為1321312

  System.out.println(username[0]);//結果為1321312


 


三、通過ActionContext獲取//導入import com.opensymphony.xwork2.ActionContext;

  ActionContext context = ActionContext.getContext();
  Map params = context.getParameters();
  String[] username=(String[])params.get("username");

  //ActionContext獲取到一個對象如object或String[]

    System.out.println(username[0]);//結果為1321312

 

摘自:黑鷹的專欄

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved