java properties读取缓存_java 读取 properties文件的各种方法

1。使用java.util.Properties类的load()方法

示例: InputStream in = lnew BufferedInputStream(new FileInputStream(name));

Properties p = new Properties();

p.load(in);

2。使用java.util.ResourceBundle类的getBundle()方法

示例: ResourceBundle rb = ResourceBundle.getBundle(name, Locale.getDefault());

3。使用java.util.PropertyResourceBundle类的构造函数

示例: InputStream in = new BufferedInputStream(new FileInputStream(name));

ResourceBundle rb = new PropertyResourceBundle(in);

4。使用class变量的getResourceAsStream()方法

示例: InputStream in = JProperties.class.getResourceAsStream(name);

Properties p = new Properties();

p.load(in);

5。使用class.getClassLoader()所得到的java.lang.ClassLoader的getResourceAsStream()方法

示例: InputStream in = JProperties.class.getClassLoader().getResourceAsStream(name);

Properties p = new Properties();

p.load(in);

6。使用java.lang.ClassLoader类的getSystemResourceAsStream()静态方法

示例: InputStream in = ClassLoader.getSystemResourceAsStream(name);

Properties p = new Properties();

p.load(in);

补充

Servlet中可以使用javax.servlet.ServletContext的getResourceAsStream()方法

示例:InputStream in = context.getResourceAsStream(path);

Properties p = new Properties();

p.load(in);

示例

JProperties.java文件

package com.kindani;

//import javax.servlet.ServletContext;

import java.util.*;

import java.io.InputStream;

import java.io.IOException;

import java.io.BufferedInputStream;

import java.io.FileInputStream;

public class JProperties {

public final static int BY_PROPERTIES = 1;

public final static int BY_RESOURCEBUNDLE = 2;

public final static int BY_PROPERTYRESOURCEBUNDLE = 3;

public final static int BY_CLASS = 4;

public final static int BY_CLASSLOADER = 5;

public final static int BY_SYSTEM_CLASSLOADER = 6;

public final static Properties loadProperties(final String name, final int type) throws IOException {

Properties p = new Properties();

InputStream in = null;

if (type == BY_PROPERTIES) {

in = new BufferedInputStream(new FileInputStream(name));

assert (in != null);

p.load(in);

} else if (type == BY_RESOURCEBUNDLE) {

ResourceBundle rb = ResourceBundle.getBundle(name, Locale.getDefault());

assert (rb != null);

p = new ResourceBundleAdapter(rb);

} else if (type == BY_PROPERTYRESOURCEBUNDLE) {

in = new BufferedInputStream(new FileInputStream(name));

assert (in != null);

ResourceBundle rb = new PropertyResourceBundle(in);

p = new ResourceBundleAdapter(rb);

} else if (type == BY_CLASS) {

assert (JProperties.class.equals(new JProperties().getClass()));

in = JProperties.class.getResourceAsStream(name);

assert (in != null);

p.load(in);

// return new JProperties().getClass().getResourceAsStream(name);

} else if (type == BY_CLASSLOADER) {

assert (JProperties.class.getClassLoader().equals(new JProperties().getClass().getClassLoader()));

in = JProperties.class.getClassLoader().getResourceAsStream(name);

assert (in != null);

p.load(in);

// return new JProperties().getClass().getClassLoader().getResourceAsStream(name);

} else if (type == BY_SYSTEM_CLASSLOADER) {

in = ClassLoader.getSystemResourceAsStream(name);

assert (in != null);

p.load(in);

}

if (in != null) {

in.close();

}

return p;

}

// ---------------------------------------------- servlet used

// ---------------------------------------------- support class

public static class ResourceBundleAdapter extends Properties {

public ResourceBundleAdapter(ResourceBundle rb) {

assert (rb instanceof java.util.PropertyResourceBundle);

this.rb = rb;

java.util.Enumeration e = rb.getKeys();

while (e.hasMoreElements()) {

Object o = e.nextElement();

this.put(o, rb.getObject((String) o));

}

}

private ResourceBundle rb = null;

public ResourceBundle getBundle(String baseName) {

return ResourceBundle.getBundle(baseName);

}

public ResourceBundle getBundle(String baseName, Locale locale) {

return ResourceBundle.getBundle(baseName, locale);

}

public ResourceBundle getBundle(String baseName, Locale locale, ClassLoader loader) {

return ResourceBundle.getBundle(baseName, locale, loader);

}

public Enumeration getKeys() {

return rb.getKeys();

}

public Locale getLocale() {

return rb.getLocale();

}

public Object getObject(String key) {

return rb.getObject(key);

}

public String getString(String key) {

return rb.getString(key);

}

public String[] getStringArray(String key) {

return rb.getStringArray(key);

}

protected Object handleGetObject(String key) {

return ((PropertyResourceBundle) rb).handleGetObject(key);

}

}

}

JPropertiesTest.java文件

package com.kindani.test;

import junit.framework.*;

import com.kindani.JProperties;

//import javax.servlet.ServletContext;

import java.util.Properties;

public class JPropertiesTest extends TestCase {

JProperties jProperties;

String key = "helloworld.title";

String value = "Hello World!";

public void testLoadProperties() throws Exception {

String name = null;

Properties p = new Properties();

name = "C://IDEAP//Properties4Methods//src//com//kindani//test//LocalStrings.properties";

p = JProperties.loadProperties(name, JProperties.BY_PROPERTIES);

assertEquals(value, p.getProperty(key));

name = "com.kindani.test.LocalStrings";

p = JProperties.loadProperties(name,JProperties.BY_RESOURCEBUNDLE);

assertEquals(value, p.getProperty(key));

assertEquals(value,((JProperties.ResourceBundleAdapter)p).getString(key));

name = "C://IDEAP//Properties4Methods//src//com//kindani//test//LocalStrings.properties";

p = JProperties.loadProperties(name, JProperties.BY_PROPERTYRESOURCEBUNDLE);

assertEquals(value, p.getProperty(key));

assertEquals(value,((JProperties.ResourceBundleAdapter)p).getString(key));

name = "//com//kindani//test//LocalStrings.properties";

p = JProperties.loadProperties(name, JProperties.BY_SYSTEM_CLASSLOADER);

assertEquals(value, p.getProperty(key));

name = "//com//kindani//test//LocalStrings.properties";

p = JProperties.loadProperties(name, JProperties.BY_CLASSLOADER);

assertEquals(value, p.getProperty(key));

name = "test//LocalStrings.properties";

p = JProperties.loadProperties(name, JProperties.BY_CLASS);

assertEquals(value, p.getProperty(key));

}

}

properties文件与JPropertiesTest.java文件相同的目录下

LocalStrings.properties文件

# $Id: LocalStrings.properties,v 1.1 2000/08/17 00:57:52 horwat Exp $

# Default localized resources for example servlets

# This locale is en_US

helloworld.title=Hello World!

requestinfo.title=Request Information Example

requestinfo.label.method=Method:

requestinfo.label.requesturi=Request URI:

requestinfo.label.protocol=Protocol:

requestinfo.label.pathinfo=Path Info:

requestinfo.label.remoteaddr=Remote Address:

requestheader.title=Request Header Example

requestparams.title=Request Parameters Example

requestparams.params-in-req=Parameters in this request:

requestparams.no-params=No Parameters, Please enter some

requestparams.firstname=First Name:

requestparams.lastname=Last Name:

cookies.title=Cookies Example

cookies.cookies=Your browser is sending the following cookies:

cookies.no-cookies=Your browser isn't sending any cookies

cookies.make-cookie=Create a cookie to send to your browser

cookies.name=Name:

cookies.value=Value:

cookies.set=You just sent the following cookie to your browser:

sessions.title=Sessions Example

sessions.id=Session ID:

sessions.created=Created:

sessions.lastaccessed=Last Accessed:

sessions.data=The following data is in your session:

sessions.adddata=Add data to your session

sessions.dataname=Name of Session Attribute:

sessions.datavalue=Value of Session Attribute:

------------------------------------------------------------------------------------------------------------------------------------------------------------------

Java对properties配置文件的操作

package com.yorsun;

import java.io.File;

import java.io.FileInputStream;

import java.io.FileNotFoundException;

import java.io.FileOutputStream;

import java.io.IOException;

import java.util.Properties;

import javax.servlet.ServletContext;

import javax.servlet.http.HttpServlet;

public class PropertiesUnit {

private String filename;

private Properties p;

private FileInputStream in;

private FileOutputStream out;

public PropertiesUnit(String filename) {

this.filename = filename;

File file = new File(filename);

try {

in = new FileInputStream(file);

p = new Properties();

p.load(in);

in.close();

} catch (FileNotFoundException e) {

// TODO Auto-generated catch block

System.err.println("配置文件config.properties找不到!");

e.printStackTrace();

} catch (IOException e) {

// TODO Auto-generated catch block

System.err.println("读取配置文件config.properties错误!");

e.printStackTrace();

}

}

public static String getConfigFile(HttpServlet hs) {

return getConfigFile(hs, "config.properties");

}

private static String getConfigFile(HttpServlet hs, String configFileName) {

String configFile = "";

ServletContext sc = hs.getServletContext();

configFile = sc.getRealPath("/" + configFileName);

if (configFile == null || configFile.equals("")) {

configFile = "/" + configFileName;

}

// TODO Auto-generated method stub

return configFile;

}

public void list() {

p.list(System.out);

}

public String getValue(String itemName) {

return p.getProperty(itemName);

}

public String getValue(String itemName, String defaultValue) {

return p.getProperty(itemName, defaultValue);

}

public void setValue(String itemName, String value) {

p.setProperty(itemName, value);

}

public void saveFile(String filename, String description) throws Exception {

try {

File f = new File(filename);

out = new FileOutputStream(f);

p.store(out, description);

out.close();

} catch (IOException ex) {

throw new Exception("无法保存指定的配置文件:" + filename);

}

}

public void saveFile(String filename) throws Exception{

saveFile(filename,"");

}

public void saveFile() throws Exception{

if(filename.length()==0)

throw new Exception("需指定保存的配置文件名");

saveFile(filename);

}

public void deleteValue(String value){

p.remove(value);

}

public static void main(String args[]){

String file="/eclipse/workspace/NewsTest/WEB-INF/config.properties";

// String file="D://eclipse//workspace//NewsTest//WEB-INF//config.properties";

PropertiesUnit pu=new PropertiesUnit(file);

pu.list();

}

}

--------------------------------------------------------------------------------------------------------------------------------------------------------------------

package com.test.TestClass;

import java.io.BufferedInputStream;

import java.io.File;

import java.io.FileInputStream;

import java.io.FileNotFoundException;

import java.io.IOException;

import java.io.InputStream;

import java.util.Properties;

public class ReadPropertiesFile ...{

public void readPropertiesFile(String fileName) throws FileNotFoundException ...{

String str = "";

Properties prop = new Properties();

InputStream stream = null;

//读取这个类在同一包中的properties文件

//stream = getClass().getClassLoader().getResourceAsStream(fileName);

System.out.println("path:" + getClass().getResource(fileName));

//读取SRC下的的properties文件

String path = getClass().getResource("/").getPath();

stream = new BufferedInputStream(new FileInputStream(new File(path+fileName)));

try ...{

prop.load(stream);

str = prop.getProperty("localname");

System.out.println("localname:" + str);

System.out.println("properties:" + prop);

stream.close();

} catch (IOException e) ...{

// TODO Auto-generated catch block

e.printStackTrace();

}

}

public static void main(String[] args) throws FileNotFoundException ...{

// TODO Auto-generated method stub

new ReadPropertiesFile().readPropertiesFile("config.properties");

}

}

--------------------------------------------------------------------------------------------------------------------------------------

//=================sprin配置文件================================

id="userService"

class="com.thtf.ezone.ezesb.jmx.admin.service.impl.UserServiceImpl">

name="filePath"

value="config/userInfo.properties" />

//=================java文件================================

package com.thtf.ezone.ezesb.jmx.admin.service.impl;

import java.io.FileInputStream;

import java.io.IOException;

import java.util.Properties;

public class UserServiceImpl implements UserService {

String filePath = null;

public void setFilePath(String filePath) {

this.filePath = filePath;

}

public static void main(String dd[])throws Exception{

Properties p = new Properties();

FileInputStream ferr=new FileInputStream((getClass().getClassLoader()

.getResource("") + filePath).toString().substring(6));// 用subString(6)去掉:file:/try{

p.load(ferr);

ferr.close();

Set s = p.keySet();

Iterator it = s.iterator();

while(it.hasNext()){

String id = (String)it.next();

String value = p.getProperty(id);

System.out.println(id+":="+value);

}

}catch(Exception e){

e.printStackTrace();

}

}

}

//==============databaseconfing.properties 文件=====================

#----------------------------------

# sql server 2000数据厍连接信息

#----------------------------------

dp.sd.DataBaseTyp=mssql

DataBaseHost=127.0.0.1:1433

DataBase=formpro

UserName=sa

PassWord=01

#----------------------------------

# mysql 数据厍连接信息

#----------------------------------

#DataBaseHost=127.0.0.1:3306

#DataBaseTyp=mysql

#DataBase=snow

#UserName=root

#PassWord=01

//==========================运行结果=======================

PassWord:=01

DataBaseHost:=127.0.0.1:1433

DataBase:=formpro

dp.sd.DataBaseTyp:=mssql

UserName:=sa

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/525661.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

终于有人把什么是云计算、大数据和人工智能讲明白了!云计算是什么?

今天跟大家讲讲云计算、大数据和人工智能。为什么讲这三个东西呢?因为这三个东西现在非常火,并且它们之间好像互相有关系,可是很多人却不知道什么是云计算或者云计算应用在哪:一般谈云计算的时候会提到大数据、谈人工智能的时候会…

java 堆栈信息_每天学习一个命令:jstack 打印 Java 进程堆栈信息

Jstack 用于打印出给定的 java 进程 ID 或 core file 或远程调试服务的 Java 堆栈信息。这里需要注意的是 Java 8 引入了 Java Mission Control,Java Flight Recorder,和 jcmd 等工具来帮助诊断 JVM 和 Java 应用相关的问题。推荐使用最新的工具以及 jcm…

数据洪流来袭,企业转型势不可挡,如何四两拨千斤?

在漫长的历史里,文明的进步都是伴随着科技的发展,企业也在不断进化,无论是商业战略还是商业模式,在科技的推动下与时俱进,不断更迭创新。历史的长河流入数据洪流的时代,人工智能、大数据、云计算等新技术掀…

java写出http数据包_java用jpcap怎么识别出http和https的数据包?

问题简述:利用java的第三方库jpcap写抓包程序,求解怎么识别出http和https的数据包(就只要能判断出是http协议或https协议即可)。测试的解法:1.在tcp包(jpcap自带TCPPacket类比较方便识别tcp包)的基础上用80端口和443端口区分http和https&…

福利 | 2018 OpenInfra Days China限量版免费票任性放出

号外号外!福利来袭,手速up up up~春困夏乏秋盹冬眠暑气炎炎,OpenInfra帮你提神醒脑——特别好礼限量放送Ready?Go!2018 年 6 月 21-22 日,OpenInfra Days China将于国家会议中心北京升级回归,汇…

开源不止,前进不息:2018 OpenInfra Days China来了!

OpenStack Days China是由一群热衷并专注于开源的中国志愿者为中国开源社区组织和举办的年度社区活动。近两年来,志愿者团队成功激起广泛关注,获得了中国各行各业和来自全球开源开发者社区的巨大支持。会议注册人数共计超过 1 万人,参与人数逾…

java 中创建数据端口_java 如何在服务器端用socket创建一个监听端口,并对接受的数据进行处理,端口号为3333,请高手指点一下...

匿名用户1级2011-09-10 回答我百度HI你好了public class Test {public static void main(String[] args) {Test1 tnew Test1();t.start(); //启动线程}}/*** 继承一个线程类* author Administrator**/class Test1 extends Thread{private ServerSocket server null;public Tes…

短暂相逢却回味无穷,全球最具影响力的以太坊技术会议视频,你保存了吗!...

关注我们,了解更多精彩内容自2008年中本聪发表的那篇仅短短9页的比特币白皮书后,毁誉参半的比特币对当今互联网及物联网的世界格局产生了重大的影响,其后延伸出来的区块链技术成为了全球最时髦的名词。相比比特币,以太坊是区块链技…

java函数式编程 map_函数式编程-对Java 8流进行分区

将任意源流划分为固定大小的批次是不可能的,因为这会加重并行处理。 并行处理时,您可能不知道拆分后第一个子任务中有多少个元素,因此您无法为下一个子任务创建分区,直到完全处理第一个子任务。但是,可以从随机访问ofS…

互联网+2.0:技术有多强 梦想才有多近

在过去不到十年的时间里,互联网行业高速发展。先是以手机、pad等智能终端为主的移动互联网打破了PC端互联网商业发展瓶颈,实体经济也依托互联网进行改造升级,“互联网”成为行业图腾和符号。后是随着人工智能、大数据、云计算等技术的融入&am…

java定时器 并发_【java多线程与并发库】— 定时器的应用 | 学步园

定时器的应用1、 定时器主要涉及到两个类(java.util包中)-》public class Timer extendsObject(一种工具,线程用其安排以后在后台线程中执行的任务。可安排任务执行一次,或者定期重复执行。 )-->public abstract class TimerTask extendsObjectimple…

java返回object的类型_为什么标准java类的clone()返回Object而不是实际的类型

在java中允许指定函数返回的类型,例如下面的代码public class Test {static class Dad {Dad me() {return this;}}static class Son extends Dad {Son me() {return this;}}}已验证.我们来看看ArrayList类.它已经覆盖了clone()函数(至少我看到它在Oracle jdk 1.7源代码)public …

效率提升,英特尔助力企业驶入“快车道”

随着越来越多的企业加入数字化转型大军,每个企业都在期待着数字化带来的业务创新及优化。从云平台的应用、大数据的决策分析,再到工作流程自动化,企业的IT部门不再仅仅是维护企业本身的业务运作以及数据处理,而是需要接入整个生态…

java怎么写事件listener_java 事件监听器ActionListener

/** 功能:java事件监听器ActionListener*/package com.events;import java.awt.BorderLayout;import java.awt.Color;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import javax.swing.*;public class changebgcolor extends JFrame implements Ac…

Spring AOP 使用介绍,从前世到今生

前面写过 Spring IOC 的源码分析,很多读者希望可以出一个 Spring AOP 的源码分析,不过 Spring AOP 的源码还是比较多的,写出来不免篇幅会大些。本文不介绍源码分析,而是介绍 Spring AOP 中的一些概念,以及它的各种配置…

求1到500以内所有的完数并输出。

如果一个数恰好等于除它本身外的所有因子之和&#xff0c;则这个数就称为完数。 例如&#xff1a;6的因子是1、2、3、&#xff0c;且6123&#xff0c;所以6是完数。 #include <stdio.h> void main() {int s,i,j;for(i1;i<500;i){printf("%d ",i);} } 在这…

java怎么用doss窗口_GitHub - doss128/symphony: 一款用 Java 实现的现代化社区(论坛/BBS/社交网络/博客)平台。...

下一代的社区系统&#xff0c;为未来而构建&#x1f4a1; 简介Symphony([ˈsɪmfəni]&#xff0c;n.交响乐)是一个现代化的社区平台&#xff0c;因为它&#xff1a;实现了面向内容讨论的论坛实现了面向知识问答的社区包含了面向用户分享、交友、游戏的社交网络100% 开源⚡ 动机…

机器学习算法比较

本文主要回顾下几个常用算法的适应场景及其优缺点&#xff01;&#xff08;提示&#xff1a;部分内容摘自网络&#xff09;。机器学习算法太多了&#xff0c;分类、回归、聚类、推荐、图像识别领域等等&#xff0c;要想找到一个合适算法真的不容易&#xff0c;所以在实际应用中…

还在用 Python 2.x?Python 3.7.0 正式发布!

6 月 27 日&#xff0c;期待已久的 Python 3.7.0 正式发布&#xff0c;与之同行的还有 3.6.6 版本的更新。此次&#xff0c;最新版的 Python 3.7.0 带来了诸多的新功能和优化&#xff0c;接下来&#xff0c;让我们一睹为快。Python 3.7.0 主要更新新的语法特性&#xff1a;PEP …

java entry的用法_Map.Entry用法

Java Entry用法./*** 遍历Map的方式* author MONEY*/public class test {public static void main(String[] arg0){Map mapnew HashMap();map.put("1", "da");map.put("2", "jia");map.put("3", "hao");//第一种使…