Enumeration接口,StringTokenizer,Hashtable,Porperties

Enumeration接口

该接口较为古老,但在维护以前的程序时就会频繁遇到。
枚举Enumeration接口,作用和Iterator类似,都是遍历数据用到的。
方法

  1. hasMorElements();
  2. nextElements();

使用示例

public class Demo01 {

    public static void main(String[] args) {
        Vector vector=new Vector<>();
        vector.add("Viking");
        vector.add("Tome");
        vector.add("Gailun");
        vector.add("Forint");
        
        Enumeration e=vector.elements();
        while(e.hasMoreElements()){
            String temp=e.nextElement();
            System.out.println(temp);
        }
    }
}

StringTokenizer类

它实现了Enumeration接口,可用于字符串分割。
与String 类的spilt();作用相似,但它不支持正则表达式

public class Demo02 {

    public static void main(String[] args) {
        
        String str="hello world;you are my sunshine;please call it later";
        StringTokenizer token=new StringTokenizer(str, ";");
        //因为StringTokenizer类实现了Enumeration接口
        while(token.hasMoreElements()){
            System.out.println(token.nextElement());;
        }
    }
}

Hashtable

Map的实现类,与HashMap操作相同
区别:
Hashtable 线程安全,键与值都不能为null,父类为Dictionary
HashMap 线程不安全,键和值可以为null,父类为AbstractMap
不细说了,没啥难度。

Porperties

继承自Hashtable

  1. 作用:读写资源配置文件
  2. 键与值只能为字符串
  3. 方法
  • 普通方法:
    setProperty(String key,String value);
    getProperty(String key);该方法如果不存在则返回null
    getProperty(String key,String defaultValue) 如果不存在则返回默认值
    不推荐使用put,get方法
public class Demo03 {

    public static void main(String[] args) {

        Properties p=new Properties();
        p.put("a", "Viking");
        p.put("b", "Tome");
        p.put("c", "Mark");
        
        System.out.println(p.getProperty("a"));
        System.out.println(p.getProperty("d"));
        System.out.println(p.getProperty("d","test"));
        }
}
结果为
Viking
null
test
  • 存储与读取什么流的方法
    后缀为.properties
    stroe(OutputStream out,String comments);
    store(Writer writer,String comments);
    load(InputStream inStream);
    load(Reader reader);
    后缀为.xml
    storeToXML(OutputStream out,String comments); UTF-8字符集
    storeToXML(OutputStream out,String comments,String encoding);
    自定义字符集
    loadFromXML(inputStream in);
public class Demo03 {
    
    public static void main(String[] args) throws FileNotFoundException, IOException {
    
        Properties p=new Properties();
        p.put("a", "Viking");
        p.put("b", "Tome");
        p.put("c", "Mark");
        //使用绝对路径,会保存在计算机的相应位置
        p.store(new FileOutputStream(new File("/home/viking/文档/db.properties")), "db");
        p.storeToXML(new FileOutputStream(new File("/home/viking/文档/db.xml")), "db");
        //使用相对路径,默认为当前项目工程
        p.store(new FileOutputStream(new File("db.properties")), "db");
    }
}
  1. 类路径加载资源文件
    类所在的根路径 bin
    由于项目提交时只会提交class文件,即bin文件夹,java源码是不会提交的。所以需要根据类路径加载配置资源文件
  • 类.class.getResourceAsStream("/");//'/'表示bin
  • Thread.currentThread().getContextClassLoader().getResourceAsStream(""); //空表示bin

以上都默认到bin文件夹

p1.load(Demo03.class.getResourceAsStream("/test/db.properties"));
p1.load(Thread.currentThread().getContextClassLoader().getResourceAsStream("test/db.properties"));

你可能感兴趣的:(Enumeration接口,StringTokenizer,Hashtable,Porperties)