|
<p >1。使用java.util.Properties类的load()方法 <BR>示例: <BR>InputStream in = lnew BufferedInputStream(new FileInputStream(name)); <BR> roperties p = new Properties(); <BR>p.load(in); <BR><BR>2。使用java.util.ResourceBundle类的getBundle()方法 <BR>示例:<BR>ResourceBundle rb = ResourceBundle.getBundle(name, Locale.getDefault()); <BR><BR>3。使用java.util.PropertyResourceBundle类的构造函数 <BR>示例: <BR>InputStream in = new BufferedInputStream(new FileInputStream(name)); <BR>ResourceBundle rb = new PropertyResourceBundle(in); <BR><BR>4。使用class变量的getResourceAsStream()方法 <BR>示例: <BR>InputStream in = JProperties.class.getResourceAsStream(name); <BR> roperties p = new Properties(); <BR>p.load(in); <BR><BR>5。使用class.getClassLoader()所得到的java.lang.ClassLoader的getResourceAsStream()方法 <BR>示例: <BR>InputStream in = JProperties.class.getClassLoader().getResourceAsStream(name); <BR> roperties p = new Properties(); <BR>p.load(in); <BR><BR>6。使用java.lang.ClassLoader类的getSystemResourceAsStream()静态方法 <BR>示例: <BR>InputStream in = ClassLoader.getSystemResourceAsStream(name); <BR> roperties p = new Properties(); <BR>p.load(in); <BR><BR>补充 <BR><BR>Servlet中可以使用javax.servlet.ServletContext的getResourceAsStream()方法 <BR>示例:<BR>InputStream in = context.getResourceAsStream(path); <BR> roperties p = new Properties(); <BR>p.load(in); <BR><BR>完整的示例,可以参考附件文件 <BR>如何上传文件,谁知道请告诉以下。 只好把source都贴上来了 <BR>JProperties.java文件 <BR><BR>/** <BR>** This program is free software. <BR>** <BR>** You may redistribute it and/or modify it under the terms of the GNU <BR>** General Public License as published by the Free Software Foundation. <BR>** Version 2 of the license should be included with this distribution in <BR>** the file LICENSE, as well as License.html. If the license is not <BR>** included with this distribution, you may find a copy at the FSF web <BR>** site at 'www.gnu.org' or 'www.fsf.org', or you may write to the <BR>** Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139 USA. <BR>** <BR>** THIS SOFTWARE IS PROVIDED AS-IS WITHOUT WARRANTY OF ANY KIND, <BR>** NOT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY. THE AUTHOR <BR>** OF THIS SOFTWARE, ASSUMES _NO_ RESPONSIBILITY FOR ANY <BR>** CONSEQUENCE RESULTING FROM THE USE, MODIFICATION, OR <BR>** REDISTRIBUTION OF THIS SOFTWARE. <BR>**/ <BR><BR>package com.kindani; <BR><BR>//import javax.servlet.ServletContext; <BR>import java.util.*; <BR>import java.io.InputStream; <BR>import java.io.IOException; <BR>import java.io.BufferedInputStream; <BR>import java.io.FileInputStream; <BR><BR>/** <BR>* 使用J2SE API?取Properties文件的六?方法 <BR>* User: SYNFORM <BR>* Date: 2005/07/12 <BR>* Time: 18:40:55 <BR>* To change this template use File | Settings | File Templates. <BR>*/ <BR>public class JProperties { <BR><BR>public final static int BY_PROPERTIES = 1; <BR>public final static int BY_RESOURCEBUNDLE = 2; <BR>public final static int BY_PROPERTYRESOURCEBUNDLE = 3; <BR>public final static int BY_CLASS = 4; <BR>public final static int BY_CLASSLOADER = 5; <BR>public final static int BY_SYSTEM_CLASSLOADER = 6; <BR><BR>public final static Properties loadProperties(final String name, final int type) throws IOException { <BR> roperties p = new Properties(); <BR>InputStream in = null; <BR>if (type == BY_PROPERTIES) { <BR>in = new BufferedInputStream(new FileInputStream(name)); <BR>assert (in != null); <BR>p.load(in); <BR>} else if (type == BY_RESOURCEBUNDLE) { <BR>ResourceBundle rb = ResourceBundle.getBundle(name, Locale.getDefault()); <BR>assert (rb != null); <BR>p = new ResourceBundleAdapter(rb); <BR>} else if (type == BY_PROPERTYRESOURCEBUNDLE) { <BR>in = new BufferedInputStream(new FileInputStream(name)); <BR>assert (in != null); <BR>ResourceBundle rb = new PropertyResourceBundle(in); <BR>p = new ResourceBundleAdapter(rb); <BR>} else if (type == BY_CLASS) { <BR>assert (JProperties.class.equals(new JProperties().getClass())); <BR>in = JProperties.class.getResourceAsStream(name); <BR>assert (in != null); <BR>p.load(in); <BR>// return new JProperties().getClass().getResourceAsStream(name); <BR>} else if (type == BY_CLASSLOADER) { <BR>assert (JProperties.class.getClassLoader().equals(new JProperties().getClass().getClassLoader())); <BR>in = JProperties.class.getClassLoader().getResourceAsStream(name); <BR>assert (in != null); <BR>p.load(in); <BR>// return new JProperties().getClass().getClassLoader().getResourceAsStream(name); <BR>} else if (type == BY_SYSTEM_CLASSLOADER) { <BR>in = ClassLoader.getSystemResourceAsStream(name); <BR>assert (in != null); <BR>p.load(in); <BR>} <BR><BR>if (in != null) { <BR>in.close(); <BR>} <BR>return p; <BR><BR>} <BR><BR>// ---------------------------------------------- servlet used <BR>/* <BR>public static Properties loadProperties(ServletContext context, String path) throws IOException { <BR>assert (context != null); <BR>InputStream in = context.getResourceAsStream(path); <BR>assert (in != null); <BR> roperties p = new Properties(); <BR>p.load(in); <BR>in.close(); <BR>return p; <BR>} <BR>*/ <BR>// ---------------------------------------------- support class <BR><BR>/** <BR>* ResourceBundle Adapter class. <BR>*/ <BR>public static class ResourceBundleAdapter extends Properties { <BR>public ResourceBundleAdapter(ResourceBundle rb) { <BR>assert (rb instanceof java.util.PropertyResourceBundle); <BR>this.rb = rb; <BR>java.util.Enumeration e = rb.getKeys(); <BR>while (e.hasMoreElements()) { <BR>Object o = e.nextElement(); <BR>this.put(o, rb.getObject((String) o)); <BR>} <BR>} <BR><BR>private ResourceBundle rb = null; <BR><BR>public ResourceBundle getBundle(String baseName) { <BR>return ResourceBundle.getBundle(baseName); <BR>} <BR><BR>public ResourceBundle getBundle(String baseName, Locale locale) { <BR>return ResourceBundle.getBundle(baseName, locale); <BR>} <BR><BR>public ResourceBundle getBundle(String baseName, Locale locale, ClassLoader loader) { <BR>return ResourceBundle.getBundle(baseName, locale, loader); <BR>} <BR><BR>public Enumeration getKeys() { <BR>return rb.getKeys(); <BR>} <BR><BR>public Locale getLocale() { <BR>return rb.getLocale(); <BR>} <BR><BR>public Object getObject(String key) { <BR>return rb.getObject(key); <BR>} <BR><BR>public String getString(String key) { <BR>return rb.getString(key); <BR>} <BR><BR>public String[] getStringArray(String key) { <BR>return rb.getStringArray(key); <BR>} <BR><BR>protected Object handleGetObject(String key) { <BR>return ((PropertyResourceBundle) rb).handleGetObject(key); <BR>} <BR><BR>} <BR><BR>} <BR><BR><BR>JPropertiesTest.java文件 <BR><BR>/** <BR>** This program is free software. <BR>** <BR>** You may redistribute it and/or modify it under the terms of the GNU <BR>** General Public License as published by the Free Software Foundation. <BR>** Version 2 of the license should be included with this distribution in <BR>** the file LICENSE, as well as License.html. If the license is not <BR>** included with this distribution, you may find a copy at the FSF web <BR>** site at 'www.gnu.org' or 'www.fsf.org', or you may write to the <BR>** Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139 USA. <BR>** <BR>** THIS SOFTWARE IS PROVIDED AS-IS WITHOUT WARRANTY OF ANY KIND, <BR>** NOT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY. THE AUTHOR <BR>** OF THIS SOFTWARE, ASSUMES _NO_ RESPONSIBILITY FOR ANY <BR>** CONSEQUENCE RESULTING FROM THE USE, MODIFICATION, OR <BR>** REDISTRIBUTION OF THIS SOFTWARE. <BR>**/ <BR>package com.kindani.test; <BR><BR>import junit.framework.*; <BR>import com.kindani.JProperties; <BR><BR>//import javax.servlet.ServletContext; <BR>import java.util.Properties; <BR><BR>public class JPropertiesTest extends TestCase { <BR>JProperties jProperties; <BR>String key = "helloworld.title"; <BR>String value = "Hello World!"; <BR><BR>public void testLoadProperties() throws Exception { <BR>String name = null; <BR> roperties p = new Properties(); <BR><BR>name = "C:\\IDEAP\\Properties4Methods\\src\\com\\kindani\\test\\LocalStrings.properties"; <BR>p = JProperties.loadProperties(name, JProperties.BY_PROPERTIES); <BR>assertEquals(value, p.getProperty(key)); <BR><BR>name = "com.kindani.test.LocalStrings"; <BR>p = JProperties.loadProperties(name,JProperties.BY_RESOURCEBUNDLE); <BR>assertEquals(value, p.getProperty(key)); <BR>assertEquals(value,((JProperties.ResourceBundleAdapter)p).getString(key)); <BR><BR>name = "C:\\IDEAP\\Properties4Methods\\src\\com\\kindani\\test\\LocalStrings.properties"; <BR>p = JProperties.loadProperties(name, JProperties.BY_PROPERTYRESOURCEBUNDLE); <BR>assertEquals(value, p.getProperty(key)); <BR>assertEquals(value,((JProperties.ResourceBundleAdapter)p).getString(key)); <BR><BR>name = "\\com\\kindani\\test\\LocalStrings.properties"; <BR>p = JProperties.loadProperties(name, JProperties.BY_SYSTEM_CLASSLOADER); <BR>assertEquals(value, p.getProperty(key)); <BR><BR>name = "\\com\\kindani\\test\\LocalStrings.properties"; <BR>p = JProperties.loadProperties(name, JProperties.BY_CLASSLOADER); <BR>assertEquals(value, p.getProperty(key)); <BR><BR>name = "test\\LocalStrings.properties"; <BR>p = JProperties.loadProperties(name, JProperties.BY_CLASS); <BR>assertEquals(value, p.getProperty(key)); <BR>} <BR><BR>/* <BR>public void testLoadProperties2() throws Exception { <BR>ServletContext context = null; <BR>String path = null; <BR> roperties p = null; <BR>path = "/WEB-INF/classes/LocalStrings.properties"; <BR>p = JProperties.loadProperties(context, path); <BR>assertEquals(value, p.getProperty(key)); <BR>} <BR>*/ <BR>} <BR><BR>properties文件与JPropertiesTest.java文件相同的目录下 <BR>LocalStrings.properties文件 <BR># $Id: LocalStrings.properties,v 1.1 2000/08/17 00:57:52 horwat Exp $ <BR><BR># Default localized resources for example servlets <BR># This locale is en_US <BR><BR>helloworld.title=Hello World! <BR><BR>requestinfo.title=Request Information Example <BR>requestinfo.label.method=Method: <BR>requestinfo.label.requesturi=Request URI: <BR>requestinfo.label.protocol=Protocol: <BR>requestinfo.label.pathinfo=Path Info: <BR>requestinfo.label.remoteaddr=Remote Address: <BR><BR>requestheader.title=Request Header Example <BR><BR>requestparams.title=Request Parameters Example <BR>requestparams.params-in-req=Parameters in this request: <BR>requestparams.no-params=No Parameters, Please enter some <BR>requestparams.firstname=First Name: <BR>requestparams.lastname=Last Name: <BR><BR>cookies.title=Cookies Example <BR>cookies.cookies=Your browser is sending the following cookies: <BR>cookies.no-cookies=Your browser isn't sending any cookies <BR>cookies.make-cookie=Create a cookie to send to your browser <BR>cookies.name=Name: <BR>cookies.value=Value: <BR>cookies.set=You just sent the following cookie to your browser: <BR><BR>sessions.title=Sessions Example <BR>sessions.id=Session ID: <BR>sessions.created=Created: <BR>sessions.lastaccessed=Last Accessed: <BR>sessions.data=The following data is in your session: <BR>sessions.adddata=Add data to your session <BR>sessions.dataname=Name of Session Attribute: <BR>sessions.datavalue=Value of Session Attribute:<BR><FONT face="Times New Roman">(责任编辑:董建伟)<BR></FONT><p align="center"></p></p> |
|