java中properties作用,java中Properties有什么用,举例说明?
該樓層疑似違規已被系統折疊?隱藏此樓查看此樓
馬克-to-win:Properties里面存著也是鍵值對,而且它更方便java對配置文件,字符串的操作,
例:3.9.1
import java.util.*;
public class TestMark_to_win {
public static void main(String args[]) {
Properties sala = new Properties();
Set name;
String str;
sala.put("zs", "1111");
sala.put("ls", "2222");
sala.put("ww", "3333");
sala.put("zl", "4444");
// Show all name and sala in hashtable.
name = sala.keySet(); // get set-view of keys
Iterator itr = name.iterator();
while (itr.hasNext()) {
str = (String) itr.next();
System.out.println("The sala of " +
/* public String getProperty(String key)Searches for the property
* with the specified key in this property list.*/
str + " is " + sala.getProperty(str) + ".");
}
System.out.println();
// look for state not in list -- specify default
/*
* Searches for the property with the specified key in this property
* list. The method returns the default value argument if the property
* is not found.
*/
str = sala.getProperty("Mark", "Not Found");
System.out.println("The sal of Mark is " + str + ".");
}
}
結果:
。。。。。。。。。。。。。。。。。
詳情黏貼以下網址在地址欄后請進:http://www.mark-to-win.com/JavaBeginner/JavaBeginner7_web.html#DefinitionUsageOfProperties
總結
以上是生活随笔為你收集整理的java中properties作用,java中Properties有什么用,举例说明?的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: php要掌握的内容,入门PHPer需要掌
- 下一篇: python write和writeli