共计 755 个字符,预计需要花费 2 分钟才能阅读完成。
在 Java 中,可以使用 java.util.Properties
类来读取 .properties
文件的内容。以下是一个示例代码:
import java.io.FileInputStream;
import java.io.IOException;
import java.util.Properties;
public class ReadPropertiesFile {public static void main(String[] args) {Properties properties = new Properties();
try {
// 通过文件输入流加载 properties 文件
FileInputStream file = new FileInputStream("config.properties");
// 加载 properties 文件内容到 Properties 对象
properties.load(file);
// 关闭文件输入流
file.close();
// 读取 properties 文件中的属性值
String username = properties.getProperty("username");
String password = properties.getProperty("password");
System.out.println("Username:" + username);
System.out.println("Password:" + password);
} catch (IOException e) {e.printStackTrace();
}
}
}
请将上述代码中的 config.properties
替换为你要读取的 .properties
文件的路径。然后,你可以通过 getProperty
方法来读取文件中的属性值。
丸趣 TV 网 – 提供最优质的资源集合!
正文完