java创建配置文件_idea 创建properties配置文件的步骤
时间: 2023-12-20 16:04:24 浏览: 79
在 IntelliJ IDEA 中创建 properties 配置文件的步骤如下:
1. 在工程中选择需要创建配置文件的路径;
2. 右键单击该路径,在弹出的菜单中选择“New” -> “File”;
3. 在弹出的“New File”窗口中输入文件名,并以“.properties”作为后缀名;
4. 点击“OK”按钮,即可创建一个空的 properties 配置文件;
5. 在 properties 配置文件中输入配置项及其对应的值,格式为“key=value”。
例如,在配置文件中添加一个名为“db.url”的配置项,并设置其值为“jdbc:mysql://localhost:3306/test”:
```
db.url=jdbc:mysql://localhost:3306/test
```
保存配置文件后,即可在代码中使用 Properties 类读取配置项的值了。
代码示例:
```java
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
public class ConfigReader {
public static void main(String[] args) throws IOException {
Properties prop = new Properties();
InputStream input = ConfigReader.class.getClassLoader().getResourceAsStream("config.properties");
prop.load(input);
String dbUrl = prop.getProperty("db.url");
System.out.println("db.url = " + dbUrl);
}
}
```
这里的“config.properties”是文件名,需要与创建的文件名一致。
阅读全文