将空字符串设置为属性文件中键的值

jdbc.password=

如何在我的 application.properties 文件中分配一个空字符串?jdbc.password

我知道我可以按如下方式以编程方式执行此操作,但我想在属性文件中设置它。

Properties props = new Properties();
props.put("password", "");

答案 1

只需将 RHS 上的值留空即可:

password=

示例代码:

import java.io.*;
import java.util.*;

class Test{
    public static void main(String [] args) throws Exception {
        Properties props = new Properties();
        props.load(new StringReader("password="));
        System.out.println(props.size()); // 1
        System.out.println(props.getProperty("password").length()); // 0
    }
}

答案 2