用Java编写:
展开全部
我组你一个例子程序吧.
//以下是my.ini的文件内容
company=cie
author=ljb
copyright=2006-2007
//以下是读取这个文件的源代码
import java.io.*;
import java.util.*;
public class PropTest
{
public static void main(String[] args)
{
// TODO 自动生成方法存根
Properties ps = new Properties();
try
{
ps.load(new FileInputStream("my.ini"));
Enumeration en = ps.propertyNames();
while (en.hasMoreElements())
{
String strKey = (String) en.nextElement();
String strValue = ps.getProperty(strKey);
System.out.println(strKey + " : " + strValue);
}
}
catch (Exception e)
{
// TODO: handle exception
e.printStackTrace();
}
}
}
//以下是my.ini的文件内容
company=cie
author=ljb
copyright=2006-2007
//以下是读取这个文件的源代码
import java.io.*;
import java.util.*;
public class PropTest
{
public static void main(String[] args)
{
// TODO 自动生成方法存根
Properties ps = new Properties();
try
{
ps.load(new FileInputStream("my.ini"));
Enumeration en = ps.propertyNames();
while (en.hasMoreElements())
{
String strKey = (String) en.nextElement();
String strValue = ps.getProperty(strKey);
System.out.println(strKey + " : " + strValue);
}
}
catch (Exception e)
{
// TODO: handle exception
e.printStackTrace();
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询