javaee中怎么获取properties中的数据
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javaee中怎么获取properties中的数据相关的知识,希望对你有一定的参考价值。
参考技术A 因为properties文件不需要重新编译,项目部署后,修改properties里面的配置信息不需要重新编译和打war包,所以很多配置文件我们可以直接配置在这里,写一个工具类即可解析获取配置信息(1)基本properties文件datacopy.properties
host=127.0.0.1
user=root
passWord=test
dataBaseName=test_database
tableName=testtabler
fileName=testuser
fileFormat=sql
(2)解析获取datacopy.properties里面的属性
package com.ict.common;
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
public class ProUtils
public String host;
public String user;
public String passWord;
public String dataBaseName;
// 需要备份的表名
public String tableName;
public String fileName;
public String fileFormat;
public ProUtils()
getProperties();
public void getProperties()
Properties prop = new Properties();
InputStream ins = this.getClass().getResourceAsStream("/datacopy.properties");
try
prop.load(ins);
host =prop.getProperty("host");
user = prop.getProperty("user");
passWord =prop.getProperty("passWord");
dataBaseName =prop.getProperty("dataBaseName");
tableName= prop.getProperty("tableName");
fileName= prop.getProperty("fileName");
fileFormat= prop.getProperty("fileFormat");
System.out.println(host);
System.out.println(user);
System.out.println(passWord);
System.out.println(dataBaseName);
System.out.println(tableName);
System.out.println(fileName);
System.out.println(fileFormat);
catch (IOException e)
e.printStackTrace();
//获取项目相对路径
public String getFileRoad()
String path1 = Thread.currentThread()
.getContextClassLoader().getResource("").getPath();
return path1;
我想在jsp页面中用js获取s:property中的value要怎么办
很简单啊!s:property的value是从action中获取的值,既然这样,你可以在js这样获取:var name = $属性名; 当然,用el表达式要引入jstl标签库!不然要报错!
也可以:<div id="name"><s:property value="属性名"></div>
js:var name=document.getElementById('name').innerHTML; 参考技术A jsp页面中用js获取s:property中的value的做法是在js中利用单引号对界定s:property取值。如下:
var url = '<s:property value="#urlBack"/>'
1、jsp文件定义如下:
<tr>
<td height="6%"align="center">
<s:submit cssClass="button" key="common.initDelegate.label" align="center" theme="simple"/>
<s:url id="urlBack" action="myAction" includeParams="none" escapeAmp="false">
<s:param name="period.periodId" value="%period.periodId"></s:param>
</s:url>
<input type="button" onclick="javascript:cancel()" value="<s:text name="common.button.cancel"/>"/>
</td>
</tr>
2、js函数写法如下:
function cancel()
if (!isModified || (isModified && askConfirmCancel()))
window.location.replace('<s:property value="#urlBack"/>');
这样就是可以通过'<s:property value="#urlBack"/>'传值给js函数 window.location.replace了。 参考技术B <script>
var val = '$value';
var val = '<s:property value="属性名">';
</script>
以上是关于javaee中怎么获取properties中的数据的主要内容,如果未能解决你的问题,请参考以下文章
我想在jsp页面中用js获取s:property中的value要怎么办?
jsp怎么获取spring配置文件properties中的信息
我想在jsp页面中用js获取s:property中的value要怎么办