在我的應用程序中,用戶可以更改propery文件..但該文本包含:冒號。雖然使用obj.setProperty(「鍵」,「值」),它通過\:無法寫入:在屬性文件中
請找到下面的示例代碼和做要緊的。
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
這是'Properties' – MadProgrammer
喜用的標準編碼,謝謝大家。它存儲性能與\文件:但同時,從性能reterving文件只顯示內容: –