广

Java编程

  • IOS开发
  • android开发
  • PHP编程
  • JavaScript
  • ASP.NET
  • ASP编程
  • JSP编程
  • Java编程
  • 易语言
  • Ruby编程
  • Perl编程
  • AJAX
  • 正则表达式
  • C语言
  • 编程开发

    java读取配置文件例子

    2018-10-07 10:22:24 次阅读 稿源:互联网
    零七广告
      本例子为读取配置文件,一般用作读取参数
      
      /*
       * Created on 2004-9-21
       *
       * Java读取配置文件例子
      */
      package net.jspcn.test;
      
      import java.util.*;
      import java.io.*;
      
      
      /**
       * @author whilvydy
       *
      */
      public class Test1 {
      
      public String getPara(String fileName) {
      Properties prop= new Properties();
      try {
      InputStream is = getClass().getResourceAsStream(fileName);
      prop.load(is);
      if(is!=null) is.close();
      }
      catch(Exception e) {
      System.out.println(e+"file "+fileName+" not found");
      }
      return prop.getProperty("file_name");
      }
      public static void main(String[] args) {
      Test1 test = new Test1();
      System.out.println(test.getPara("db.property"));
      }
      }
      
      
      -----------------------------------
      db.property内容如下:
      file_name:WinRAR.exe 
     

    零七网部分新闻及文章转载自互联网,供读者交流和学习,若有涉及作者版权等问题请及时与我们联系,以便更正、删除或按规定办理。感谢所有提供资讯的网站,欢迎各类媒体与零七网进行文章共享合作。

    零七广告
    零七广告
    零七广告
    零七广告