我们经常会在程序中用到这样的配置文件:
Listener = org.kyle.net.svr.sample.SampleListenerImpl
ServerAddress = 127.0.0.1
ListeningPort = 80
ListenerTimeout = 120
StatelessService = true
LogLevel = ALL
LogPath = server.log
在这里提供了一个处理这种配置文件的类的源代码。
package org.kyle.util;
import Java.io.*;
import java.util.*;
//加载配置文件,并提供从配置文件中读取各种类型的值的方法
public class Profile
{
protected Properties applicationProps;