我知道字符串中的属性可以加载到 java.util.Properties 当它被 \n 分隔时,如下所示。
有什么方法可以动态提供分隔符,例如:我们可以使用逗号 (,) 作为分隔符吗?
String propertiesString = "#Namal=153\nJanith=253\nSameera=135";
Properties properties = new Properties();
properties.load(new StringReader(propertiesString));