码迷,mamicode.com
首页 > Web开发 > 详细

jsp定义全局变量:读取properties文件

时间:2017-12-09 14:54:42      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:xxx   tcl   string   ring   portal   全局   new   pre   ssl   

<%
java.util.Properties prop = new java.util.Properties();
java.io.InputStream in;
in = getClass().getClassLoader().getResourceAsStream("conf/XXX.properties");
prop.load(in);
String portal_address = (String)prop.get("XXX");
in.close();
%>

<c:set var="XXX" value="<%=XXX%>"/>

然后就可以使用了。。。。。

使用方式:${XXX}




jsp定义全局变量:读取properties文件

标签:xxx   tcl   string   ring   portal   全局   new   pre   ssl   

原文地址:http://www.cnblogs.com/wsh1230/p/8011361.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!