- 浏览: 40898 次
- 性别:
- 来自: 北京
文章分类
最新评论
-
1641606815:
请问一下如何用接口解决这个问题?谢谢!已知某个设计中已经有两个 ...
C++中的接口和java接口的区别 -
魔力猫咪:
无聊,太咸了。
一)关羽和赵云在敌人心目中的对比 -
jiqing0311:
好像不好使啊
JTable清空
h2SE API读取Properties文件的六种方法
发布时间:2007.07.10 06:25 来源:赛迪网 作者:dxaw |
使用J2SE API读取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); |
- 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;
- /**
- * 使用J2SE API?取Properties文件的六种方法
- * User: SYNFORM
- * Date: 2005/07/12
- * Time: 18:40:55
- * To change this template use File | Settings | File Templates.
- */
- 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
- /*
- public static Properties loadProperties(
- ServletContext context, String path) throws IOException {
- assert (context != null);
- InputStream in = context.getResourceAsStream(path);
- assert (in != null);
- Properties p = new Properties();
- p.load(in);
- in.close();
- return p;
- }
- */
- // ---------------------------------------------- support class
- /**
- * ResourceBundle Adapter 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<String> 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);
- }
- }
- }
- 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));
- }
- /*
- public void testLoadProperties2() throws Exception {
- ServletContext context = null;
- String path = null;
- Properties p = null;
- path = "/WEB-INF/classes/LocalStrings.properties";
- p = JProperties.loadProperties(context, path);
- 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:
相关推荐
读取Properties文件是Java开发中的常见操作,特别是在需要根据配置文件动态改变程序行为的时候。下面我们将详细探讨如何在Java中读取Properties文件。 首先,你需要确保你的项目中包含了一个Properties文件,比如`...
在JavaScript(JS)环境中,读取.properties文件通常用于处理配置数据或者本地化文本。这些文件在Java开发中广泛使用,但JavaScript同样可以借助一些库或技术来读取它们。下面我们将详细探讨如何在JavaScript中实现...
本篇文章将详细探讨如何通过Python来读取并解析`.properties`配置文件。 首先,了解`.properties`文件的格式。这种文件通常用于存储配置信息,其中键值对以等号`=`分隔,每一行代表一个键值对,注释以`#`或`!`开始...
1. **properties文件结构** `properties`文件的结构非常简单,每行代表一个键值对,键和值之间用等号`=`或冒号`:`分隔。例如: ``` username=admin password=123456 database.url=jdbc:mysql://localhost:3306/...
本文将详细讲解使用J2SE API来读取Properties文件的六种方法。 1. **使用java.util.Properties类的load()方法** 这是最基本的方法,通过`FileInputStream`打开文件,然后使用`Properties`类的`load()`方法加载内容...
在Android开发中,读取`properties`文件是一个常见的任务,主要用于存储配置信息或者与Java中的`.properties`文件进行交互。`.properties`文件是一种简单的键值对格式,常用于跨平台的配置存储。以下是对这个主题的...
在Java编程中,读取properties文件是常见的任务,主要用于配置应用程序的参数或环境变量。properties文件通常以键值对的形式存储数据,便于管理和修改。本文将详细介绍三种在Java中读取properties文件的方法。 1. ...
这个压缩包“Java源码读写Properties文件.rar”包含了一份关于如何使用Java来读取和写入Properties文件的源代码示例。下面我们将详细探讨这个主题。 首先,Properties类是Java的标准库类,位于`java.util`包下,它...
在处理Properties文件时,可能会遇到几个常见的问题,包括找不到指定路径、读取正常但文件数据未更新的情况。以下是对这些问题的详细解答。 首先,让我们解决“系统找不到指定路径”的问题。在Java中,加载...
### Java读取Properties文件的六种方法 在Java开发中,`Properties` 文件常用于存储配置信息,如数据库连接字符串、应用配置等。正确且高效地读取这些配置文件对于程序运行至关重要。本文将详细介绍六种不同的方法...
"SSM 读取properties文件"这个话题聚焦于如何在项目中有效地读取和使用这些配置文件。properties文件通常用于存储应用程序的配置参数,如数据库连接信息、服务器端口、邮件服务设置等,使得这些关键信息能够独立于...
properties文件读写操作
总结一下,处理Java中的Properties文件读写时,需要注意文件路径的准确性、文件的读写权限以及缓存问题。通过以上方法,应该能够有效解决描述中提到的问题。对于提供的"新建文本文档.txt",虽然不是Properties文件,...
这个"读取properties文件工具类"是为了简化程序中对`.properties`文件的读取操作而设计的。通过这样的工具类,开发者可以方便地加载和获取配置文件中的属性值,避免重复编写相同的代码。下面我们将详细探讨`...
### 如何使用Java读取properties文件内容 在Java开发中,`properties`文件是一种非常常见的配置文件格式,它主要用于存储程序的各种配置信息。通过这种方式,可以实现程序与配置的分离,便于维护和调整。本文将详细...
ConfigFile configfile = ConfigFile.getInstance("ipConfig123.properties"); String ip = configfile.getkeyvalue("ip"); 可以取出ipConfig123.properties 文件中IP的内容
### C#操作Properties,读写配置文件 在C#编程中,经常需要处理应用程序的配置信息,例如数据库连接字符串、用户界面的语言设置等。这些配置信息通常存储在配置文件中,便于程序运行时动态加载和修改。C#提供了一种...
### 读取Properties文件:Java中的配置管理利器 在Java编程中,`Properties`类是处理配置文件(通常为`.properties`格式)的关键工具。这种文件格式被广泛应用于存储应用程序的配置信息,如数据库连接字符串、邮件...
3. **读取properties文件内容** 一旦文件加载成功,可以使用`getProperty()`方法获取特定键的值: ```java String username = prop.getProperty("username"); String password = prop.getProperty("password"); ...
### 读取Properties文件的六种方法 在Java开发中,`Properties`文件是一种非常常见的配置文件格式,它主要用于存储程序的各种配置信息。通过不同方式读取这些配置信息,可以提高程序的灵活性与可维护性。本文将详细...