在我的应用程序中,用户可以更改属性文件。但该文本包含:冒号。在使用 obj.setProperty("key","value") 它通过 \:
请找到下面的示例代码并做必要的事情。
String url="http://google.co.in";
Properties p=new Properties();
FileOutputStream o=new FileOutputStream("abc.properties");
p.setProperties("testurl",url);
p.store(o,null);
o.close();
谢谢Praveenkumar V