Java中的Properties類儲存丟失資訊?!

lyojbuilder發表於2006-07-18
誰有用過 java中的 Properties類操作屬性檔案麼?
我發現如果用這個類操作 XXX.properties檔案 後,屬性檔案中的註釋都沒了!
網上使用 java操作 Properties檔案的文章很多,但是他們難道都沒注意這個丟失註釋資訊的問題麼? 8)
我用的是標準的Properties方法

InputStream in=.......
Properties p=new Properties();
p.load(in);
p.setProperty("test","hi");
p.store(new FileOutputStream("test.properties"),"changed");
<p class="indent">

這樣操作後,你就會發現test.properties中的英文註釋全被刪除了! :?:

相關文章