我有一个JAR文件,我的所有代码都已归档以便运行。我必须访问每次运行前需要更改/编辑的属性文件。我想将属性文件保存在JAR文件所在的目录中。有没有告诉Java从该目录中获取属性文件?
注意:我不想将属性文件保留在主目录中,也不希望在命令行参数中传递属性文件的路径。
答案 0 :(得分:132)
因此,您希望将与主/ runnable jar相同的文件夹上的.properties
文件视为文件而不是main / runnable jar的资源。在这种情况下,我自己的解决方案如下:
首先要做的是:你的程序文件架构应该是这样的(假设你的主程序是main.jar,它的主要属性文件是main.properties):
./ - the root of your program
|__ main.jar
|__ main.properties
使用此体系结构,您可以在main.jar运行之前或期间使用任何文本编辑器修改main.properties文件中的任何属性(取决于程序的当前状态),因为它只是基于文本的文件。例如,您的main.properties文件可能包含:
app.version=1.0.0.0
app.name=Hello
因此,当您从root / base文件夹运行主程序时,通常会按以下方式运行它:
java -jar ./main.jar
或者,马上:
java -jar main.jar
在main.jar中,您需要为main.properties文件中的每个属性创建一些实用程序方法;假设app.version
属性具有getAppVersion()
方法,如下所示:
/**
* Gets the app.version property value from
* the ./main.properties file of the base folder
*
* @return app.version string
* @throws IOException
*/
import java.util.Properties;
public static String getAppVersion() throws IOException{
String versionString = null;
//to load application's properties, we use this class
Properties mainProperties = new Properties();
FileInputStream file;
//the base folder is ./, the root of the main.properties file
String path = "./main.properties";
//load the file handle for main.properties
file = new FileInputStream(path);
//load all the properties from this file
mainProperties.load(file);
//we have loaded the properties, so close the file handle
file.close();
//retrieve the property we are intrested, the app.version
versionString = mainProperties.getProperty("app.version");
return versionString;
}
在主程序的任何需要app.version
值的部分中,我们将其方法称为如下:
String version = null;
try{
version = getAppVersion();
}
catch (IOException ioe){
ioe.printStackTrace();
}
答案 1 :(得分:35)
我是通过其他方式做到的。
Properties prop = new Properties();
try {
File jarPath=new File(MyClass.class.getProtectionDomain().getCodeSource().getLocation().getPath());
String propertiesPath=jarPath.getParentFile().getAbsolutePath();
System.out.println(" propertiesPath-"+propertiesPath);
prop.load(new FileInputStream(propertiesPath+"/importer.properties"));
} catch (IOException e1) {
e1.printStackTrace();
}
答案 2 :(得分:2)
从jar文件访问文件目录中的文件始终存在问题。在jar文件中提供类路径非常有限。而是尝试使用bat文件或sh文件来启动程序。通过这种方式,您可以随意指定类路径,引用系统中任何位置的任何文件夹。
同时检查我对这个问题的回答:
答案 3 :(得分:1)
我有类似的情况:希望我的*.jar
文件访问所述*.jar
文件旁边的目录中的文件。请参阅THIS ANSWER。
我的文件结构是:
./ - the root of your program
|__ *.jar
|__ dir-next-to-jar/some.txt
我可以使用以下内容将文件(例如some.txt
)加载到*.jar
文件中的InputStream:
InputStream stream = null;
try{
stream = ThisClassName.class.getClass().getResourceAsStream("/dir-next-to-jar/some.txt");
}
catch(Exception e) {
System.out.print("error file to stream: ");
System.out.println(e.getMessage());
}
然后使用stream
答案 4 :(得分:0)
我有一个通过类路径或使用log4j2.properties从外部配置进行操作的示例
package org.mmartin.app1;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
import org.apache.logging.log4j.Logger;
import org.apache.logging.log4j.core.LoggerContext;
import org.apache.logging.log4j.LogManager;
public class App1 {
private static Logger logger=null;
private static final String LOG_PROPERTIES_FILE = "config/log4j2.properties";
private static final String CONFIG_PROPERTIES_FILE = "config/config.properties";
private Properties properties= new Properties();
public App1() {
System.out.println("--Logger intialized with classpath properties file--");
intializeLogger1();
testLogging();
System.out.println("--Logger intialized with external file--");
intializeLogger2();
testLogging();
}
public void readProperties() {
InputStream input = null;
try {
input = new FileInputStream(CONFIG_PROPERTIES_FILE);
this.properties.load(input);
} catch (IOException e) {
logger.error("Unable to read the config.properties file.",e);
System.exit(1);
}
}
public void printProperties() {
this.properties.list(System.out);
}
public void testLogging() {
logger.debug("This is a debug message");
logger.info("This is an info message");
logger.warn("This is a warn message");
logger.error("This is an error message");
logger.fatal("This is a fatal message");
logger.info("Logger's name: "+logger.getName());
}
private void intializeLogger1() {
logger = LogManager.getLogger(App1.class);
}
private void intializeLogger2() {
LoggerContext context = (org.apache.logging.log4j.core.LoggerContext) LogManager.getContext(false);
File file = new File(LOG_PROPERTIES_FILE);
// this will force a reconfiguration
context.setConfigLocation(file.toURI());
logger = context.getLogger(App1.class.getName());
}
public static void main(String[] args) {
App1 app1 = new App1();
app1.readProperties();
app1.printProperties();
}
}
--Logger intialized with classpath properties file--
[DEBUG] 2018-08-27 10:35:14.510 [main] App1 - This is a debug message
[INFO ] 2018-08-27 10:35:14.513 [main] App1 - This is an info message
[WARN ] 2018-08-27 10:35:14.513 [main] App1 - This is a warn message
[ERROR] 2018-08-27 10:35:14.513 [main] App1 - This is an error message
[FATAL] 2018-08-27 10:35:14.513 [main] App1 - This is a fatal message
[INFO ] 2018-08-27 10:35:14.514 [main] App1 - Logger's name: org.mmartin.app1.App1
--Logger intialized with external file--
[DEBUG] 2018-08-27 10:35:14.524 [main] App1 - This is a debug message
[INFO ] 2018-08-27 10:35:14.525 [main] App1 - This is an info message
[WARN ] 2018-08-27 10:35:14.525 [main] App1 - This is a warn message
[ERROR] 2018-08-27 10:35:14.525 [main] App1 - This is an error message
[FATAL] 2018-08-27 10:35:14.525 [main] App1 - This is a fatal message
[INFO ] 2018-08-27 10:35:14.525 [main] App1 - Logger's name: org.mmartin.app1.App1
-- listing properties --
dbpassword=password
database=localhost
dbuser=user
答案 5 :(得分:0)
这对我有用。从current directory
Properties properties = new Properties();
properties.load(new FileReader(new File(".").getCanonicalPath() + File.separator + "java.properties"));
properties.forEach((k, v) -> {
System.out.println(k + " : " + v);
});
确保java.properties
在current directory
处。您只需编写一个启动脚本即可切换到之前的正确目录,例如
#! /bin/bash
scriptdir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $scriptdir
java -jar MyExecutable.jar
cd -
在您的项目中,只需将java.properties
文件放在您的项目根目录中,以使此代码也可以在您的IDE中工作。
答案 6 :(得分:0)
如果您提到.getPath()
,那么它将返回Jar的路径,我想
您将需要其父项来引用与jar一起放置的所有其他配置文件。
此代码在Windows上有效。在主类中添加代码。
File jarDir = new File(MyAppName.class.getProtectionDomain().getCodeSource().getLocation().getPath());
String jarDirpath = jarDir.getParent();
System.out.println(jarDirpath);
答案 7 :(得分:0)
File parentFile = new File(".");
String parentPath = file.getCanonicalPath();
File resourceFile = new File(parentPath+File.seperator+"<your config file>");