共计 911 个字符,预计需要花费 3 分钟才能阅读完成。
在 Java 中,可以使用 java.util.Properties
类来读取 properties 文件的值。
以下是一个简单的示例:
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
public class ReadPropertiesExample {public static void main(String[] args) {Properties properties = new Properties();
InputStream inputStream = null;
try {// 读取 properties 文件
inputStream = new FileInputStream("config.properties");
properties.load(inputStream);
// 读取属性值
String value1 = properties.getProperty("key1");
String value2 = properties.getProperty("key2");
System.out.println("Value 1: " + value1);
System.out.println("Value 2: " + value2);
} catch (IOException e) {e.printStackTrace();
} finally {if (inputStream != null) {try {inputStream.close();
} catch (IOException e) {e.printStackTrace();
}
}
}
}
}
在这个示例中,我们首先创建一个 Properties
对象,然后使用 FileInputStream
来读取 properties 文件。接下来,使用 load()
方法加载文件内容到 Properties
对象中。最后,可以使用 getProperty()
方法来获取具体的属性值。
需要注意的是,要根据实际的 properties 文件路径来指定 FileInputStream
的参数。
丸趣 TV 网 – 提供最优质的资源集合!
正文完
发表至: Java
2023-12-13