我是靠谱客的博主 魁梧服饰,最近开发中收集的这篇文章主要介绍java将常量设置在配置文件中,读取配置文件,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

将常量设置在配置文件中,读取配置文件

package properties;

import org.testng.annotations.Test;
import java.io.FileInputStream;
import java.util.Properties;
public class Constant {
    public static Properties prop = getProperties();
    public static Properties getProperties() {
        Properties prop = new Properties();
        try {
            FileInputStream file = new FileInputStream("src/main/resources/test.properties");
            prop.load(file);
            file.close();
        } catch (Exception e) {
            e.printStackTrace();
        }
        return prop;
    }

    @Test
    public void test(){
        Constant  ctest=new Constant();
        Properties prop = ctest.prop;
        System.out.println(prop.getProperty("test.name"));
    }
}

 

 

test.properties文件中内容为:

test.name = javascript

最后

以上就是魁梧服饰为你收集整理的java将常量设置在配置文件中,读取配置文件的全部内容,希望文章能够帮你解决java将常量设置在配置文件中,读取配置文件所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(45)

评论列表共有 0 条评论

立即
投稿
返回
顶部