从java中的属性文件中读取正则表达式

时间:2013-06-20 08:43:41

标签: java regex properties

我在java中的属性文件中读取(\+?\s*[0-9]+\s*)+之类的值时遇到问题,因为我使用getProperty()方法得到的值是(+?s*[0-9]+s*)+

在属性文件中转义值不是一个选项。

有什么想法吗?

3 个答案:

答案 0 :(得分: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();
    }
}

答案 1 :(得分:1)

我很晚才回答这个问题,但也许这可以帮助其他人到达这里。

较新版本的Java(不确定哪个,我使用的是8)通过使用\\来表示我们习惯的正常\来支持转义值。

例如,在您的情况下,(\\+?\\s*[0-9]+\\s*)+就是您要找的。

答案 2 :(得分: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 ......