共计 781 个字符,预计需要花费 2 分钟才能阅读完成。
在 Java 中,可以使用 Properties 类来获取 properties 文件的内容。具体方法如下:
- 创建 Properties 对象并加载 properties 文件,可以使用 Properties 类的 load() 方法。
Properties prop = new Properties();
try {prop.load(new FileInputStream("path/to/your/properties/file"));
} catch (IOException e) {e.printStackTrace();
}
- 获取 properties 文件中的值,可以使用 Properties 类的 getProperty() 方法。
String value = prop.getProperty("key");
其中,”key” 是 properties 文件中的键,value 是对应的值。
完整的示例代码如下:
import java.io.FileInputStream;
import java.io.IOException;
import java.util.Properties;
public class Main {public static void main(String[] args) {Properties prop = new Properties();
try {prop.load(new FileInputStream("path/to/your/properties/file"));
} catch (IOException e) {e.printStackTrace();
}
String value = prop.getProperty("key");
System.out.println(value);
}
}
请将 ”path/to/your/properties/file” 替换为你的 properties 文件的路径。
丸趣 TV 网 – 提供最优质的资源集合!
正文完