标签:style class blog code java http
例1:
创建一个config文件夹
config文件夹中有一个Properties.properties文件
内容为:
capitalLetter=ABCDE
smallLetter=abcde
注意:config文件夹与包含Test类的包为同一级
import java.io.IOException; import java.util.Properties; public class Test { public static void main(String[] args) { Properties props=new Properties(); //创建配置文件对应的对象 try { props.load(Test.class.getResourceAsStream("config/Properties.properties")); //指定需要读取文件的位置 System.out.println("从配置文件中读取的大写字母"+props.getProperty("capitalLetter")); System.out.println("从配置文件中读取的小写字母"+props.getProperty("smallLetter")); } catch (IOException e) { e.printStackTrace(); } } }
输出:
从配置文件中读取的大写字母ABCDE
从配置文件中读取的小写字母abcde
Java读取.properties文件,布布扣,bubuko.com
标签:style class blog code java http
原文地址:http://www.cnblogs.com/gdds/p/3804939.html