java读取properties配置文件路径问题

privateStringaa="atest.properties";privatestaticStringss=null;publictest(){Properties... private String aa = "atest.properties";
private static String ss = null;
public test(){
Properties prop = new Properties();
try {
prop.load(getClass().getResourceAsStream("/"+aa));
ss=prop.getProperty("ins");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
读取文件报错:java.lang.NullPointerException
at java.util.Properties$LineReader.readLine(Properties.java:418)
at java.util.Properties.load0(Properties.java:337)
at java.util.Properties.load(Properties.java:325)
at test.test.<init>(test.java:20)
at test.test.main(test.java:28)
大家帮帮忙吧!先谢谢啦!!!
展开
 我来答
老冯文库
2011-06-09 · 知道合伙人软件行家
老冯文库
知道合伙人软件行家
采纳数:1139 获赞数:8734

向TA提问 私信TA
展开全部
说说我的项目中的情况吧:
配置文件“weblogic11g.properties”保存在WEB-INFO目录下,和web.xml在同一个目录下。
一个JavaBean专门用于读取配置文件的内容:

public class PropertiesIO {
private String fileName = null;

public PropertiesIO(String fileName){
this.fileName = getClass().getClassLoader().getResource("/").getPath() + "..\\" + fileName;
}

public String getValue(String key){
try{
InputStream in = new FileInputStream(fileName);
Properties prop = new Properties();
prop.load(in);
in.close();
return prop.getProperty(key);
}
catch(Exception err){
err.printStackTrace();
return null;
}
}
}

重点说明:getClass().getClassLoader().getResource("/")会得到当前项目下的“WEB-INF\classes”目录,即JavaBean的*.class文件的根目录,
getClass().getClassLoader().getResource("/").getPath() + "..\\" + fileName
就会得到当前项目下的“WEB-INF\weblogic11g.properties”文件。

getValue()是根据键值得到相应配置项的内容,这样就简单了。
追问
请问一下这个应该是web项目吧?
追答
package test;

import java.io.*;
import java.util.*;

public class test {

private String aa = "config\\atest.properties";
private static String ss = null;
public test(){
Properties prop = new Properties();
try {
File file = new File(aa);
InputStream in = new FileInputStream(file.getAbsolutePath());
prop.load(in);
ss=prop.getProperty("ins");
} catch (IOException e) {
e.printStackTrace();
}
}
public static void main(String[] args) {
test t =new test();
System.out.println(ss);
}
}
437384801
2011-06-09 · TA获得超过1867个赞
知道小有建树答主
回答量:1299
采纳率:0%
帮助的人:514万
展开全部
哎,太简单了放在类路径阿,把properies复制到放类的地方,或者在缺省包都行,然后直接引用属性文件的名字:(aa)
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
198901245631
2015-07-12 · TA获得超过3.5万个赞
知道大有可为答主
回答量:9037
采纳率:92%
帮助的人:1739万
展开全部
可以直接通过Thread方法直接获取到项目路径下的配置文件:
static {
InputStream is = Thread.currentThread().getContextClassLoader().getResourceAsStream("BankConPort.properties"); //加载线程文件成为流
Properties prop = new Properties();
try {
prop.load(is);//直接转换为对象
BOB_ReqURI = prop.getProperty("BOB_ReqURI");
BOB_SignURI = prop.getProperty("BOB_SignURI");
BOBLOGINPASSWORD = prop.getProperty("BOBLOGINPASSWORD");
} catch (IOException ex) {
java.util.logging.Logger.getLogger(BOBUtil.class.getName()).log(Level.SEVERE, null, ex);
} finally {
if (is != null) {
try {
is.close();
} catch (IOException e) {
Log.info("解析信息出错", e.getMessage());

}
}
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
shantijiang
2011-06-09 · 超过12用户采纳过TA的回答
知道答主
回答量:48
采纳率:0%
帮助的人:32.9万
展开全部
prop.load(getClass().getResourceAsStream("config/"+aa));
追问
这样还是不行,报的错还是一样的,还有别的解决办法吗?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式