Properties pps=new Properties();
        try {
            pps.load(new FileInputStream("src/email.properties"));
            Enumeration enum1 = pps.propertyNames();
            while (enum1.hasMoreElements()) {
                String strKey = (String) enum1.nextElement();
                   String strValue = pps.getProperty(strKey);
                   System.out.println(strKey + "=" + strValue);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }

05-11 11:27