Java操作ini文件

依赖jar包

ini4j-0.5.4.jar


测试例子

[java]  view plain  copy
  1. package cn.yjx.ini4j;  
  2.   
  3. import java.io.File;  
  4. import java.io.IOException;  
  5.   
  6. import org.ini4j.Wini;  
  7.   
  8. public class Ini4jTest {  
  9.     public static void main(String[] args) throws IOException {  
  10.         test1();     
  11.     }  
  12.   
  13.     public static void test1() throws IOException {  
  14.         String fileName = "D:\\dev\\Java\\MyEclipse_workspace\\Test\\src\\cn\\yjx\\ini\\test1.ini";  
  15.         Wini ini = new Wini(new File(fileName));  
  16.         int age = ini.get("happy""age"int.class);  
  17.         double height = ini.get("happy""height"double.class);  
  18.         String dir = ini.get("happy""homeDir");  
  19.           
  20.         System.out.println(age);   
  21.         System.out.println(height);  
  22.         System.out.println(dir);  
  23.     }  
  24.   
  25. }    


被操作文件:

[plain]  view plain  copy
  1. [happy]  
  2. age = 99  
  3. height = 77.66  
  4. homeDir = /home/happy  

你可能感兴趣的:(Java)