刘政道 - 应用程序框架

《31天学会CRM项目开发(C#编程入门及项目实战)》作者,IT经理,程序员
  博客园  :: 新随笔  :: 联系 :: 管理

get vars from url or request

Posted on 2009-10-10 08:31  刘政道  阅读(124)  评论(0编辑  收藏  举报
1 //get vars from url or request
2 
3 Map params = FacesContext.getCurrentInstance().getExternalContext().getRequestParameterMap(); 
4 String myVar= (String)params.get("myVar");