我无法使用以下代码段加载属性文件
URL configURL = null;
URLConnection configURLConn = null;
InputStream configInputStream = null;
currConfigProperties = new Properties();
try {
String configPropertiesFile = getParameter("propertiesFile");
if (configPropertiesFile == null) {
configPropertiesFile = "com/abc/applet/Configuration.properties";
}
System.out.println("configPropertiesFile :"+configPropertiesFile);
configURL = new URL(getCodeBase(), configPropertiesFile);
configURLConn = configURL.openConnection();
configInputStream = configURLConn.getInputStream();
currConfigProperties.load(configInputStream);
} catch (MalformedURLException e) {
System.out.println(
"Creating configURL: " + e);
} catch (IOException e) {
System.out.println(
"IOException opening configURLConn: "
+ e);
}
获取java.io.FileNotFoundException异常。
答案 0 :(得分:1)
您可以通过以下方式在java类中加载属性文件: -
InputStream fileStream = new FileInputStream(configPropertiesFile);
currConfigProperties.load(fileStream);
另外,将您的属性文件路径更改为src/com/abc/applet/Configuration.properties
您也可以使用它从类路径加载它: -
currConfigProperties.load(this.getClass().getResourceAsStream(configPropertiesFile));
答案 1 :(得分:0)
从OP的评论加载来自类路径。所以需要使用ClassLoader,
public void load() {
getClass().getResourceAsStream("my/resource");
}
public static void loadStatic() {
Thread.currentThread().getContextClassLoader().getResourceAsStream("my/resource");
}
第一种方法需要在实例上下文中,第二种方法可以在静态上下文中工作。
答案 2 :(得分:0)
如果您的媒体资源与您的班级在同一个地方:
Properties properties = new Properties();
try {
properties.load(getClass().getResourceAsStream("properties.properties"));
} catch (IOException e) { /*File Not Found or something like this*/}
我的情况是你的属性在你的类文件的根文件夹中:
Properties properties = new Properties();
try {
properties.load(getClass().getClassLoader().getResourceAsStream("properties.properties"));
} catch (IOException e) { /*File Not Found or something like this*/}
此外,您可以使用-DmyPropertiesFile=./../../properties.properties
将该传递传递到您的属性文件,然后将其System.getProperty("myPropertiesFile")
。
答案 3 :(得分:0)
您也可以尝试此操作。
public static void loadPropertiesToMemory() {
Properties prop = new Properties();
InputStream input = null;
String filePathPropFile = "configuration.properties";
try {
input = App.class.getClassLoader().getResourceAsStream(filePathPropFile);
prop.load(input);
} catch (IOException ex) {
ex.printStackTrace();
}
}
App
是实现上述方法的类。