首页 相关文章 enoeht的Java源码系列之处理配置文件

enoeht的Java源码系列之处理配置文件

我们经常会在程序中用到这样的配置文件:
  
  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;
  [ 查看全文 ]

2016-02-19 标签:

enoeht的Java源码系列之处理配置文件的相关文章

手机页面
收藏网站 回到头部