用jConfig获取XML文件中的配置信息

2008-03-13 03:42:40来源: 阅读 ()

新老客户大回馈,云服务器低至5折

第一步:下载jConfig:在http://sourceforge.net/里下载最新的jConfig项目包 http://sourceforge.net/project/showfiles.php?group_id=38356&package_id=30 463&release_id=272653,下载最新bin包(我用的是jconfig-bin-v2.8.5.zip) Www~Chinaz~com

第二步:解开下载的zip文件,在dist目录下有jconfig.jar(这是项目包);在lib目录下有crimson.jar,jaxp.jar,jmxri.jar(这是解析xml文件所需的三个包),把这四个jar打到你的classpath中去。 Www_Chinaz_com

第三步:书写xml配置文件config.xml:

中国站.长.站

 

以下为引用的内容:
<?xml version="1.0" encoding="iso-8859-1" ?>
 <properties>
   <category name="general">
     <property name="QueueConnectionFactory" value="java:/ConnectionFactory"/>
   </category>
   <category name="database">
     <property name="DataSource"
  value="java:DB2DS"/>
   </category>
 </properties>

 

站.长.站

第四步:书写java文件:
站.长.站

 

以下为引用的内容:

public class GetConfig
{ 站.长站

public static Configuration configuration; 中.国站长站

static
{
configuration =
ConfigurationManager.getConfiguration();
  
   }

中.国.站.长.站

 

public static String
queueConnectionFactory = getProperties( Www@Chinaz@com

"QueueConnectionFactory",
"java:/ConnectionFactory");

Www~Chinaz~com

 

public static String datasource
= getProperties("DataSource",
"java:DB2DS",
            "database");
public static String getProperties
(String key, String defaultValue)
{
        return configuration.
  getProperty(key, defaultValue);
    } Chinaz^com

    public static String getProperties
 (String key, String defaultValue,
  String category)
  {
return configuration.getProperty
(key, defaultValue, category);
    } 中国.站长站

public static void
main(String[] args)
{
        System.out.println
  (GetConfig.driverClassName
  + "-" + GetConfig.url +
 "-" + GetConfig.user + "-"
 + GetConfig.password);
    } [中国站长站]

} 中国.站.长站

Www_Chinaz_com

第五步:编译执行在这里我只简单介绍应用一下,如有兴趣请查看zip文件的docs目录下文档。 中.国站长站

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:XSL学习心得-制作图像超链接

下一篇:论Asp与XML的关系