明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺(tái)!

讀寫指定的屬性文件演示

[摘要]代碼:import java.io.*;import java.util.Properties;public class PropertiesDemo public static void main(String[] args) String pFilename = System.g...
代碼:
import java.io.*;
import java.util.Properties;

public class PropertiesDemo {
  public static void main(String[] args)
  {
    String pFilename = System.getProperty("user.dir")
      + System.getProperty("file.separator") + "test.properties"; // 構(gòu)造文件名
    Properties p = new Properties();  

    try
    {
      FileInputStream in = new FileInputStream(pFilename);  // 構(gòu)造文件的輸入流
      p.load(in);           // 讀入屬性
      in.close();
    }
    catch(Exception e)
    {
      System.out.println("Error of create input stream");
    }

    System.out.println(p.getProperty("property1"));
    p.setProperty("property1","new value"); // 給property1賦新的值

    try
    {
      FileOutputStream out = new FileOutputStream(pFilename);
      p.store(out,"This file is a test"); // 設(shè)置屬性文件的文件頭信息
      out.flush();
      out.close();
    }
    catch(Exception e)
    {
      System.out.println("Error of write input stream");
    }
  }
}