web-dev-qa-db-ja.com

JavaでINIファイルを解析する最も簡単な方法は何ですか?

Javaのレガシーアプリケーションのドロップイン置換を書いています。要件の1つは、古いアプリケーションが使用したiniファイルを新しいJava Application。セクションとkey = valueのペア。コメント用の文字として#を使用します。

JavaのPropertiesクラスを使用してみましたが、もちろん、異なるヘッダー間で名前の衝突がある場合は機能しません。

質問は、このINIファイルを読み取り、キーにアクセスする最も簡単な方法は何でしょうか?

95
Mario Ortegón

私が使用したライブラリは ini4j です。軽量で、iniファイルを簡単に解析します。また、設計上の目標の1つは標準のJava API

これは、ライブラリの使用方法の例です。

Ini ini = new Ini(new File(filename));
Java.util.prefs.Preferences prefs = new IniPreferences(ini);
System.out.println("grumpy/homePage: " + prefs.node("grumpy").get("homePage", null));
114
Mario Ortegón

前述 のように、 ini4j を使用してこれを達成できます。もう1つの例を示します。

次のようなINIファイルがある場合:

[header]
key = value

以下はvalueをSTDOUTに表示するはずです。

Ini ini = new Ini(new File("/path/to/file"));
System.out.println(ini.get("header", "key"));

その他の例については、 チュートリアル を確認してください。

61
Tshepang

80行と同じくらい簡単:

package windows.prefs;

import Java.io.BufferedReader;
import Java.io.FileReader;
import Java.io.IOException;
import Java.util.HashMap;
import Java.util.Map;
import Java.util.regex.Matcher;
import Java.util.regex.Pattern;

public class IniFile {

   private Pattern  _section  = Pattern.compile( "\\s*\\[([^]]*)\\]\\s*" );
   private Pattern  _keyValue = Pattern.compile( "\\s*([^=]*)=(.*)" );
   private Map< String,
      Map< String,
         String >>  _entries  = new HashMap<>();

   public IniFile( String path ) throws IOException {
      load( path );
   }

   public void load( String path ) throws IOException {
      try( BufferedReader br = new BufferedReader( new FileReader( path ))) {
         String line;
         String section = null;
         while(( line = br.readLine()) != null ) {
            Matcher m = _section.matcher( line );
            if( m.matches()) {
               section = m.group( 1 ).trim();
            }
            else if( section != null ) {
               m = _keyValue.matcher( line );
               if( m.matches()) {
                  String key   = m.group( 1 ).trim();
                  String value = m.group( 2 ).trim();
                  Map< String, String > kv = _entries.get( section );
                  if( kv == null ) {
                     _entries.put( section, kv = new HashMap<>());   
                  }
                  kv.put( key, value );
               }
            }
         }
      }
   }

   public String getString( String section, String key, String defaultvalue ) {
      Map< String, String > kv = _entries.get( section );
      if( kv == null ) {
         return defaultvalue;
      }
      return kv.get( key );
   }

   public int getInt( String section, String key, int defaultvalue ) {
      Map< String, String > kv = _entries.get( section );
      if( kv == null ) {
         return defaultvalue;
      }
      return Integer.parseInt( kv.get( key ));
   }

   public float getFloat( String section, String key, float defaultvalue ) {
      Map< String, String > kv = _entries.get( section );
      if( kv == null ) {
         return defaultvalue;
      }
      return Float.parseFloat( kv.get( key ));
   }

   public double getDouble( String section, String key, double defaultvalue ) {
      Map< String, String > kv = _entries.get( section );
      if( kv == null ) {
         return defaultvalue;
      }
      return Double.parseDouble( kv.get( key ));
   }
}
28
Aerospace

Apacheクラス HierarchicalINIConfiguration を使用した、シンプルでありながら強力な例を次に示します。

HierarchicalINIConfiguration iniConfObj = new HierarchicalINIConfiguration(iniFile); 

// Get Section names in ini file     
Set setOfSections = iniConfObj.getSections();
Iterator sectionNames = setOfSections.iterator();

while(sectionNames.hasNext()){

 String sectionName = sectionNames.next().toString();

 SubnodeConfiguration sObj = iniObj.getSection(sectionName);
 Iterator it1 =   sObj.getKeys();

    while (it1.hasNext()) {
    // Get element
    Object key = it1.next();
    System.out.print("Key " + key.toString() +  " Value " +  
                     sObj.getString(key.toString()) + "\n");
}

Commons Configurationには、多くの 実行時依存関係 があります。少なくとも、 commons-lang および commons-logging が必要です。使用している内容によっては、追加のライブラリが必要になる場合があります(詳細については前のリンクを参照してください)。

16
user50217

または、標準のJava APIを使用すると、 Java.util.Properties

Properties props = new Properties();
try (FileInputStream in = new FileInputStream(path)) {
    props.load(in);
}
13
Peter

18行で、Java.util.Properties複数のセクションに解析するには:

public static Map<String, Properties> parseINI(Reader reader) throws IOException {
    Map<String, Properties> result = new HashMap();
    new Properties() {

        private Properties section;

        @Override
        public Object put(Object key, Object value) {
            String header = (((String) key) + " " + value).trim();
            if (header.startsWith("[") && header.endsWith("]"))
                return result.put(header.substring(1, header.length() - 1), 
                        section = new Properties());
            else
                return section.put(key, value);
        }

    }.load(reader);
    return result;
}
8
hoat4

もう1つのオプションは、 Apache Commons Config にも INIファイル からロードするためのクラスがあります。 実行時の依存関係 がありますが、INIファイルの場合、Commonsコレクション、lang、およびロギングのみが必要です。

プロジェクトでCommons Configを使用し、そのプロパティとXML構成を使用しました。非常に使いやすく、いくつかの非常に強力な機能をサポートしています。

2
John Meagher

JINIFileを試すことができます。 DelphiのTIniFileの翻訳ですが、Java用です

https://github.com/SubZane/JIniFile

2
Andreas Norman

個人的には Confucious を好みます。

外部の依存関係を必要とせず、16Kにすぎず、初期化時に自動的にiniファイルをロードするため、素晴らしいです。例えば。

Configurable config = Configuration.getInstance();  
String Host = config.getStringValue("Host");   
int port = config.getIntValue("port"); 
new Connection(Host, port);
2
Mark