码迷,mamicode.com
首页 > 其他好文 > 详细

Hashtable之Properties

时间:2018-01-21 19:18:15      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:属性   puts   htable   hashmap   body   test   system   不能   str   

properties的使用:
1、Hashtable的实现类,线程安全。与HashMap不同,Hashtable不允许使用null作为key和value
2、和HashMap一样,Hashtable也不能保证其中key-value对的顺序
3、Hashtable判断两个key相对,2个value相等的标准,与hashMap一致
Hashtable在集合中几乎不使用了,但Properties继承了Hashtable。在jdbc连接加载属性文件时,起到关键性作用。

代码示例:

public static void propertiesTest() throws Exception{
//常用来处理属性文件 特点:键和值均为String类型的
Properties properties = new Properties();
//读取和载入
properties.load(new FileInputStream(new File("jdbc.properties")));//load()加载一个流
String user = properties.getProperty("user");
System.out.println(user);
}

总结:Properties的键和值都是String类型的

Hashtable之Properties

标签:属性   puts   htable   hashmap   body   test   system   不能   str   

原文地址:https://www.cnblogs.com/kelly-one/p/8324805.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!