后缀名为properties,config和xml的文件内容读取

Posted 知晓的老巢

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了后缀名为properties,config和xml的文件内容读取相关的知识,希望对你有一定的参考价值。

1、先建立文件(后缀名为properties和config)

2、读取类建立

public class Read{

  public static Properties  properties = new Properties();

  static {

    tr{

      properties.load(new FileReader(src/type.properties));

    }catch(Exception e){

      e.printStackTrace();

    }

  }

  public static void main(String[] args){

    //方式一

    String type = properties.getProperty("type");

    TVFactory tvFactory = (TVFactory)Class.forName(type).newInstance();

    TV tv = tvFactory.produceTV();

    tv.pay();

    //方式二(xml的读取)

    SAXReader reader = new SAXReader();

    Document document = reader.read(new File(src/tv.xml));

    Element config = document.getRootElement();

    Iterator it =  config.elementIterator();

    String str = null;

    while(it.hasNext){

      Element type = it.next();

      str = type.getStringValue();

    }

         TVFactory tvFactory = (TVFactory)Class.forName(type).newInstance();

    TV tv = tvFactory.produceTV();

    tv.pay();

  }

}

以上是关于后缀名为properties,config和xml的文件内容读取的主要内容,如果未能解决你的问题,请参考以下文章

IDEA中快速创建xml文件(含mybatis-config.xmlXxxMapeer.xml)

MyBatis配置文件之properties属性

SpringBoot-YAML语法

Mybatis学习XML配置文件之mybatis-config.xml

配置c3p0-config.xml或者c3p0.properties文件来实例化ComboPooledDataSource对象来连接数据库

Mybatis-config.xml配置文件详解