java 读取 properties 属性文件_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > java 读取 properties 属性文件

java 读取 properties 属性文件

 2011/12/8 8:10:55  klo0704  http://klo0704.iteye.com  我要评论(0)
  • 摘要:packagecom.xinlong.util;importjava.io.InputStream;importjava.util.Properties;publicfinalclassTest{publicstaticStringp1;publicstaticStringp2;static{Propertiesprop=newProperties();InputStreamin=Object.class.getResourceAsStream("/struts.properties")
  • 标签:文件 Java

package com.xinlong.util;

import java.io.InputStream;
import java.util.Properties;

public final class Test {
?public static String p1;
?public static String p2;
?static
?{
??Properties prop = new Properties();
??InputStream in = Object.class.getResourceAsStream("/struts.properties");
??try{
???prop.load(in);
???p1=prop.getProperty("path").trim();
???p2=prop.getProperty("IndexDir").trim();
??}catch(Exception ex)
??{
???
??}
?}
private Test () {
?
}
?/**
?* @return the p1
?*/
public static String getP1() {
?return p1;
}
/**
?* @param p1 the p1 to set
?*/
public static void setP1(String p1) {
?Test.p1 = p1;
}
/**
?* @return the p2
?*/
public static String getP2() {
?return p2;
}
/**
?* @param p2 the p2 to set
?*/
public static void setP2(String p2) {
?Test.p2 = p2;
}
?/**
? * @param args
? */
?public static void main(String[] args) {
??// TODO Auto-generated method stub
??System.out.println("1======="+getP1());
??System.out.println("2======"+getP2());
?}

}

发表评论
用户名: 匿名