`

java load propertites file

阅读更多

 

在平常的项目中,我们经常需要用到一些配置文件,而加载配置文件的方法都差不多,所以就写了一个

PropertiesUtils来加载配置文件

 

package com.chen.aq.utils;

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import java.util.Properties;

public class PropertiesUtil {
	private static Properties properties = null;
	private static final String file = "/commons-config.properties";
	static{
		loadProperties();
	}
	/**
	 * 读取默认的配置文件信息,默认的配置文件为/WEB-INF/classes/commons-config.properties
	 * @return 
	 */
	public static void loadProperties(){
		StringBuilder sb = getBasePath().append(file);
		InputStream input = null;
		try {
			input = new FileInputStream(sb.toString());
			properties = new Properties();
			properties.load(input);
		} catch (FileNotFoundException e) {
			System.err.println("找不到配置文件:" + file);
		} catch (IOException e) {
			System.err.println("读取配置文件时出错:" + file);
		} finally {
			try {
				if (input != null) {
					input.close();
				}
			} catch (Exception e) {
				System.err.println("关闭配置文件:" + file + " 时出错!");
			}
		}
	}
	
	private static StringBuilder getBasePath(){
//		StringBuilder sb = new StringBuilder(PropertiesUtil.class.getResource("").getPath().replace("%20", " "));
//		if(sb.indexOf("classes")!=-1){
//			sb.delete(sb.indexOf("classes"),sb.length());
//		}
//		
//		sb.append("classes");
		//class.getClassLoader().getResource() :names are relative to classpath,but
		//class.getResource() : names are relative to the class's package
		StringBuilder sb = new StringBuilder(PropertiesUtil.class.getClassLoader().getResource("").getPath().replace("%20", " "));
		return sb;
	}
	
	/**
	 * 读取配置文件信息
	 * 
	 * @param fileName 配置文件路径名称,配置文件路径为/WEB-INF/classes
	 * @return Properties
	 */
	public static Properties loadProperties(String fileName){
		StringBuilder sb = getBasePath();
		if(fileName!=null && fileName.startsWith("/")){
			sb.append(fileName);
		}else{
			sb.append("/").append(fileName);
		}
		InputStream input = null;
		try {
			input = new FileInputStream(sb.toString());
			Properties properties = new Properties();
			properties.load(input);
			return properties;
		} catch (FileNotFoundException e) {
			System.err.println("找不到配置文件:" + fileName);
		} catch (IOException e) {
			System.err.println("读取配置文件时出错:" + fileName);
		} finally {
			try {
				if (input != null) {
					input.close();
				}
			} catch (Exception e) {
				System.err.println("关闭配置文件:" + fileName + " 时出错!");
			}
		}
		return null;
	}
	
	public static void setPropertyToFile(String key, String value){
		if(properties==null){
			return;
		}
		properties.setProperty(key, value);
		FileOutputStream out = null;
		try {
			URL resource = PropertiesUtil.class.getClassLoader().getResource(file);
			out = new FileOutputStream(resource.getPath());
			properties.store(out, null);
		} catch (FileNotFoundException e) {
			System.err.println("找不到配置文件:" + file);
		} catch (IOException e) {
			System.err.println("设置配置文件时出错:" + file);
		} finally{
			if(out!=null){
				try {
					out.close();
				} catch (IOException e) {
					System.err.println("关闭配置文件:" + file + " 时出错!");
				}
			}
		}
	}
}

 

分享到:
评论

相关推荐

    load_file() 常用敏感信息.txt

    根据给定文件的信息,我们可以梳理出与`load_file()`函数相关的敏感信息及系统配置路径,主要涉及了在不同操作系统下的文件路径以及通过SQL注入时如何利用`load_file()`函数读取这些敏感文件。 ### `load_file()`...

    MYSQL注入中load_file()函数的进一步应用.pdf

    根据提供的文件片段内容,我们可以看出这是一篇关于在MYSQL注入攻击中如何进一步利用load_file()函数的文章。load_file()是一个MySQL数据库中的函数,它允许读取服务器上的文件并返回文件内容作为字符串。在某些情况...

    利用MySQL load_file函数获取服务器文件试验

    - 示例:使用Oracle数据库执行`SELECT DUMP(LoadFile('e:\\测试文件1.txt'), 1, 16) FROM dual;`,可以得到文件内容的十进制表示。 - **MySQL的char函数**: - MySQL中的`CHAR()`函数可以接受一系列整数参数,...

    load_file超速辅助工具

    在IT行业中,`load_file`通常是指MySQL数据库中的一个功能,允许从文件中直接加载数据到数据库表中,极大地提高了数据导入的效率。这个“超速辅助工具”可能是一个为这个过程提供加速或自动化处理的软件。不过,由于...

    PdfUtils.java

    解决Could not load font file: C:\Windows\FONTS\mstmc.ttf 对应问题贴https://blog.csdn.net/guozhangjie1992/article/details/103679640

    Mysql注入中的outfile、dumpfile、load_file函数详解

    在这个话题中,我们将深入探讨三个与文件操作相关的MySQL函数:`INTO OUTFILE`、`INTO DUMPFILE`和`LOAD_FILE()`,它们在SQL注入攻击中扮演着重要角色。 1. `INTO OUTFILE`: 这个函数用于将查询结果直接导出到一...

    Java利用MYSQL LOAD DATA LOCAL INFILE实现大批量导入数据到MySQL

    "Java利用MYSQL LOAD DATA LOCAL INFILE实现大批量导入数据到MySQL" Java大批量导入MySQL是一种高效的数据导入方式,使用MYSQL的LOAD DATA LOCAL INFILE语句可以快速地从一个文本文件中读取行,并装入一个表中。...

    mysql load_file读freebsd目录.txt

    ### 知识点一:MySQL `LOAD_FILE()` 函数 `LOAD_FILE()` 是 MySQL 中一个非常有用的函数,它允许用户从服务器文件系统加载二进制数据到数据库中。此函数通常用于查询语句中,可以返回指定文件的内容作为字符串。其...

    load_file参考资料

    load_file参考资料 从exploit.db上找到的资料 load_file参考资料 从exploit.db上找到的资料

    MYSQL注入中load_file()函数的进一步应用

    在探讨“MYSQL注入中load_file()函数的进一步应用”这一主题时,我们深入解析load_file()函数在SQL注入攻击中的核心角色及其高级应用。load_file()函数是MySQL中一个允许从服务器磁盘读取文件的强大工具,但在安全性...

    php使用simplexml_load_file加载XML文件并显示XML的方法

    下面我们将详细探讨如何使用`simplexml_load_file`以及它的一些基本用法。 首先,`simplexml_load_file`函数的语法如下: ```php simplexml_load_file(string $filename, string $class_name = 'SimpleXMLElement'...

    mysql load data infile 的用法.docx

    Mysql Load Data Infile 的用法 Mysql 的 Load Data Infile 语句是一个非常强大的工具,可以快速地将文本文件中的数据导入到 Mysql 数据库中。在本文中,我们将详细介绍 Load Data Infile 的用法,包括其语法、参数...

    MySQL使用LOAD_FILE()函数方法总结

    在MySQL数据库系统中,LOAD_FILE()函数是一个非常实用的功能,它允许用户直接从服务器的文件系统中读取文件内容,并将其作为一个字符串返回。这个函数在处理大量文本数据或者需要快速导入文件内容到数据库中时非常...

    Node.js-load-json-file-读取和解析JSON文件

    `load-json-file`模块就是专为此目的设计的一个高效且方便的工具。这个库由Sindre Sorhus创建,他在Node.js社区以其高质量的开源软件而闻名。 `load-json-file`的核心功能在于,它不仅读取文件内容,还会自动将内容...

    PHP simplexml_load_file()函数讲解

    $xml=simplexml_load_file(note.xml); print_r($xml); ?> 定义和用法 simplexml_load_file()函数转换指定的 XML 文件为 SimpleXMLElement 对象。 语法 simplexml_load_file( _file,...

    loadFile:loadFile是个简易的Jquery插件,用于异步加载javascript、css文件,可以单文件、多文件一起加载,也可以设置加载完成回调和加载失败回调函数

    loadFile loadFile是个简易的Jquery插件,用于异步加载javascript、css文件,可以单文件、多文件一起加载,也可以设置加载完成回调和加载失败回调函数。 使用例子: 1、单文件加载 $.loadFile('js/test1.js',...

    【跳坑日记】Ubuntu 16.04安装 Ruby2.7.0遇到的坑:cannot load such file — openssl (LoadError)

    在本文中,我们将探讨在Ubuntu 16.04系统上安装Ruby 2.7.0时遇到的一个常见问题:`cannot load such file — openssl (LoadError)`。这是一个与Ruby和OpenSSL库集成有关的问题,通常发生在试图安装或运行依赖于...

    php中simplexml_load_file函数用法实例

    simplexml_load_file()是其中的一个,它用于将XML文件加载为SimpleXMLElement对象,这个对象可以被进一步操作,如遍历、检索数据等。本文将详细介绍simplexml_load_file()函数的用法,并通过实例来演示如何从XML文件...

Global site tag (gtag.js) - Google Analytics