JAVA+Struts2获取服务器地址的方法
程序员文章站
2024-02-29 22:31:10
本文实例讲述了java+struts2获取服务器地址的方法。分享给大家供大家参考。具体实现方法如下:
复制代码 代码如下:httpservletrequest reque...
本文实例讲述了java+struts2获取服务器地址的方法。分享给大家供大家参考。具体实现方法如下:
复制代码 代码如下:
httpservletrequest request=servletactioncontext.getrequest();
string path=request.getrequesturi();
string actionpath=".."+path.substring(9);
//访问服务器所带有的参数信息
string queryinfo=request.getquerystring();
if(queryinfo!=null&&(!queryinfo.equals(""))){
actionpath=actionpath+"?"+queryinfo;
}
logger.debug("用户访问的路径是:"+actionpath);
actioncontext.getcontext().getsession().put(globalfield.pre_path, actionpath);
string path=request.getrequesturi();
string actionpath=".."+path.substring(9);
//访问服务器所带有的参数信息
string queryinfo=request.getquerystring();
if(queryinfo!=null&&(!queryinfo.equals(""))){
actionpath=actionpath+"?"+queryinfo;
}
logger.debug("用户访问的路径是:"+actionpath);
actioncontext.getcontext().getsession().put(globalfield.pre_path, actionpath);
希望本文所述对大家的java程序设计有所帮助。