web-dev-qa-db-ja.com

JARファイル外のプロパティファイルを読み取る

すべてのコードが実行のためにアーカイブされているJARファイルがあります。各実行前に変更/編集する必要があるプロパティファイルにアクセスする必要があります。 JARファイルと同じディレクトリにプロパティファイルを保持したい。とにかくJavaにそのディレクトリからプロパティファイルを取得するように指示する方法はありますか?

注:プロパティファイルをホームディレクトリに保持したり、コマンドライン引数でプロパティファイルのパスを渡したりしたくない。

116
Neil

したがって、メイン/実行可能jarのリソースとしてではなく、ファイルとして、メイン/実行可能jarと同じフォルダーにある.propertiesファイルを処理する必要があります。その場合、私自身の解決策は次のとおりです。

まず最初に、プログラムファイルのアーキテクチャは次のようになります(メインプログラムが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

したがって、メインプログラムをルート/ベースフォルダから実行する場合、通常は次のように実行します。

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();
}
133
ecle

他の方法でやった。

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();
    }
  1. Jarファイルのパスを取得します。
  2. そのファイルの親フォルダーを取得します。
  3. InputStreamPathでそのパスをプロパティファイル名で使用します。
35
Ninad Pingale

Jarファイルからファイルディレクトリのファイルへのアクセスには常に問題があります。 jarファイルでクラスパスを提供することは非常に限られています。代わりに、batファイルまたはshファイルを使用してプログラムを開始してください。このようにして、システム上の任意のフォルダを参照して、クラスパスを好きなように指定できます。

この質問に対する私の答えも確認してください:

sqliteを含むJavaプロジェクトの.exeファイルを作成する

2
sethu

同様のケースがあります:*.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を使用して何でもします

1
ddaaggeett

クラスパスまたは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
0
pitchblack408

これは私のために動作します。 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.propertiescurrent directoryにあることを確認してください。次のように、前に正しいディレクトリに切り替える小さな起動スクリプトを書くことができます。

#! /bin/bash
scriptdir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 
cd $scriptdir
Java -jar MyExecutable.jar
cd -

このコードをIDEからも機能させるために、プロジェクトでJava.propertiesファイルをプロジェクトルートに配置するだけです。

0
jschnasse