properties是配置文件。
主要的作用是通过修改配置文件可以方便地修改代码中的参数,实现不用改class文件即可灵活变更参数。
解释:java运行中java文件会变成class文件,之后无法通过反编译找到原样的代码,这样的话,如果java类中某个参数变更,就很难灵活的实现参数修改,这个时候properties 文件就能很灵活的实现配置,减少代码的维护成本和提高开发效率。通俗的讲,就是properties是永久性存储机制,用来存储永久性数据,一般用语jdbc数据库配置文件,或者不需要变更的参数值。
1.首先是在resources中创建一个porperties文件,文件名随意,也可在resources中创建文件并放在文件中
2.需要写一个调用properties的方法,当其他类需要用到或者存储properties中的数据配置时,直接调用即可。
在java目录下创建一个Proper类 代码如下。
import java.io.*; import java.util.Properties; public class Proper { private static String Filedata = "E:\\java\\iotest\\src\\main\\resources\\config\\properties.properties"; private static Properties Getproper() { //获取proper配置文件信息 Properties properties = new Properties(); InputStream inputStream = null; try { inputStream = new FileInputStream(Filedata); properties.load(inputStream); } catch (FileNotFoundException e) { System.out.println("文件未找到"); } catch (IOException e) { e.printStackTrace(); } finally { try { if (inputStream != null) inputStream.close(); } catch (IOException e) { System.out.println("文件关闭失败"); } } return properties; } static void setproper(String Key, String value) {//输入一个配置文件信息 Properties properties = Getproper(); properties.setProperty(Key, value); OutputStream outputStream = null; try { outputStream = new FileOutputStream(Filedata); properties.store(outputStream, "注释"); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } finally { try { if (outputStream != null) { outputStream.close(); } } catch (IOException e) { e.printStackTrace(); } } } static String getvalue(String Key) { Properties properties = Getproper(); String value = properties.getProperty(Key); return value; } }