Javaのレガシーアプリケーションのドロップイン置換を書いています。要件の1つは、古いアプリケーションが使用したiniファイルを新しいJava Application。セクションとkey = valueのペア。コメント用の文字として#を使用します。
JavaのPropertiesクラスを使用してみましたが、もちろん、異なるヘッダー間で名前の衝突がある場合は機能しません。
質問は、このINIファイルを読み取り、キーにアクセスする最も簡単な方法は何でしょうか?
私が使用したライブラリは 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));
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 ));
}
}
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 が必要です。使用している内容によっては、追加のライブラリが必要になる場合があります(詳細については前のリンクを参照してください)。
または、標準のJava APIを使用すると、 Java.util.Properties :
Properties props = new Properties();
try (FileInputStream in = new FileInputStream(path)) {
props.load(in);
}
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;
}
もう1つのオプションは、 Apache Commons Config にも INIファイル からロードするためのクラスがあります。 実行時の依存関係 がありますが、INIファイルの場合、Commonsコレクション、lang、およびロギングのみが必要です。
プロジェクトでCommons Configを使用し、そのプロパティとXML構成を使用しました。非常に使いやすく、いくつかの非常に強力な機能をサポートしています。
JINIFileを試すことができます。 DelphiのTIniFileの翻訳ですが、Java用です
個人的には Confucious を好みます。
外部の依存関係を必要とせず、16Kにすぎず、初期化時に自動的にiniファイルをロードするため、素晴らしいです。例えば。
Configurable config = Configuration.getInstance();
String Host = config.getStringValue("Host");
int port = config.getIntValue("port");
new Connection(Host, port);