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)
大家帮帮忙吧!先谢谢啦!!! 展开
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)
大家帮帮忙吧!先谢谢啦!!! 展开
展开全部
说说我的项目中的情况吧:
配置文件“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()是根据键值得到相应配置项的内容,这样就简单了。
配置文件“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);
}
}
展开全部
哎,太简单了放在类路径阿,把properies复制到放类的地方,或者在缺省包都行,然后直接引用属性文件的名字:(aa)
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
可以直接通过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());
}
}
}
}
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());
}
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
prop.load(getClass().getResourceAsStream("config/"+aa));
追问
这样还是不行,报的错还是一样的,还有别的解决办法吗?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询