ActionContext.getContext().get("你要获取的属性名称")
使用上述方法可以获得,下面是辅助说明。
在Struts2开发中,除了将请求参数自动设置到Action的字段中,我们往往也需要在Action里直接获取请求(Request)或会话(Session)的一些信息,甚至需要直接对JavaServlet Http的请求(HttpServletRequest),响应(HttpServletResponse) *** 作. 我们需要在Action中取得request请求参数"username"的值:
[java]
ActionContext context = ActionContext.getContext()
Map params = context.getParameters()
String username = (String) params.get("username")
ActionContext context = ActionContext.getContext()
Map params = context.getParameters()
String username = (String) params.get("username")
写了一个读取本地文件的方法, File file = new File(htmlFile)FileReader fr = new FileReader(file)BufferedReader br = new BufferedReader(fr)while((s=br.readLine())!=null){ al.add(s)} 在当前类写了main方法测试了一下是可行的, 但是页面某方法想调用该方法,不能实现。 总结问题是:只有放在static方法中可行,在其他地方调用都显示找不到指定文件。 文件结构: 把本地文件放在了web-inf的classes下了,相对路径写的(“/file.txt”)求教为啥static方法可以,其他地方调用不行,这个函数本身不是静态的啊。欢迎分享,转载请注明来源:内存溢出
评论列表(0条)