0

メソッドで(\+?\s*[0-9]+\s*)+取得する値は であるため、Java のプロパティ ファイルからのような値の読み取りに問題があります。getProperty()(+?s*[0-9]+s*)+

プロパティ ファイル内の値のエスケープは、まだオプションではありません。

何か案は?

4

3 に答える 3

1

このクラスは、プロパティ ファイルのバックスラッシュの問題を解決できると思います。

import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import java.util.HashMap;

public class ProperProps {

    HashMap<String, String> Values = new HashMap<String, String>();

    public ProperProps() {
    };

    public ProperProps(String filePath) throws java.io.IOException {
        load(filePath);
    }

    public void load(String filePath) throws IOException {
        BufferedReader reader = new BufferedReader(new FileReader(filePath));
        String line;
        while ((line = reader.readLine()) != null) {
            if (line.trim().length() == 0 || line.startsWith("#"))
                continue;

            String key = line.replaceFirst("([^=]+)=(.*)", "$1");
            String val = line.replaceFirst("([^=]+)=(.*)", "$2");
            Values.put(key, val);

        }
        reader.close();
    }


    public String getProperty(String key) {
        return Values.get(key);
    }


    public void printAll() {
        for (String key : Values.keySet())
            System.out.println(key +"=" + Values.get(key));
    }


    public static void main(String [] aa) throws IOException {
        // example & test 
        String ptp_fil_nam = "my.prop";
        ProperProps pp = new ProperProps(ptp_fil_nam);
        pp.printAll();
    }
}
于 2013-06-20T09:11:56.937 に答える
0

BufferedReader代わりに古典を使用して読んでください:

final URL url = MyClass.class.getResource("/path/to/propertyfile");
// check if URL is null;

String line;

try (
    final InputStream in = url.openStream();
    final InputStreamReader r 
        = new InputStreamReader(in, StandardCharsets.UTF_8);
    final BufferedReader reader = new BufferedReader(r);
) {
    while ((line = reader.readLine()) != null)
        // process line
}

必要に応じてJava 6に適応...

于 2013-06-20T08:48:26.913 に答える