在Java中,可以使用java.util.Properties
类来读取Spring 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 (FileInputStream fis = new FileInputStream("application.properties")) { properties.load(fis); } catch (IOException e) { e.printStackTrace(); } // 读取properties文件中的值 String value1 = properties.getProperty("key1"); String value2 = properties.getProperty("key2"); System.out.println("Value of key1: " + value1); System.out.println("Value of key2: " + value2); } }
在这个例子中,我们创建了一个Properties
对象并通过load()
方法加载了application.properties
文件。然后可以使用getProperty()
方法来获取properties文件中的值。最后输出了两个值。