2011-10-11 40 views

回答

0

使用這樣的事情:

// Read properties file. 
Properties properties = new Properties(); 
try { 
    properties.load(new FileInputStream("filename.properties")); 
    String value = properties.getProperty("propertyKey"); 
} catch (IOException e) { 
} 
+0

當然,'Properties'是用java的一部分。 util。*在你的Java SDK中,''filename.properties''應該是在你的類路徑中(或者,給出文件的完整路徑)。在你的情況下,'propertyKey'將是'ipAddress',並且返回的值將是配置的IP地址 – Saket

相關問題