java读取properties配置文件路径问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java读取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)
大家帮帮忙吧!先谢谢啦!!!
配置文件“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);
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());
参考技术C prop.load(getClass().getResourceAsStream("config/"+aa));追问
这样还是不行,报的错还是一样的,还有别的解决办法吗?
以上是关于java读取properties配置文件路径问题的主要内容,如果未能解决你的问题,请参考以下文章