Java核心代码例程之:PropertiesDemo.java

发表于:2007-06-22来源:作者:点击数: 标签:
import java .util.*; importjava.io.*; /** *Demonstrateshowtosortstrings. ***/ publicclassPropertiesDemo { publicstaticvoidmain(Stringargs[])throwsException { Propertiesprops=newProperties(); props.put(db.user,jack); props.put(db.password,o

   
import java.util.*;
import java.io.*;


/**
 * Demonstrates how to sort strings.
 ***/
public class PropertiesDemo
{

    public static void main(String args[]) throws Exception
    {
        Properties props = new Properties();
        props.put("db.user", "jack");
        props.put("db.password", "opendoor");
        
        // getProperty will return the value if found, otherwise null
        System.out.println(props.getProperty("db.user"));
        
        // getProperty will return the value if found, otherwise "none"
        System.out.println(props.getProperty("db.password", "none"));
        
        /*
        // You can also load properties from a file
        FileInputStream fis = new FileInputStream("my.properties");
        props.load(fis);
        fis.close();
        **/
    }
}

原文转自:http://www.ltesting.net