Property Loader : Properties « Development Class « Java

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JDK 6
25.JNDI LDAP
26.JPA
27.JSP
28.JSTL
29.Language Basics
30.Network Protocol
31.PDF RTF
32.Reflection
33.Regular Expressions
34.Scripting
35.Security
36.Servlets
37.Spring
38.Swing Components
39.Swing JFC
40.SWT JFace Eclipse
41.Threads
42.Tiny Application
43.Velocity
44.Web Services SOA
45.XML
Java » Development Class » PropertiesScreenshots 
Property Loader
      

import java.io.InputStream;
import java.util.Enumeration;
import java.util.Locale;
import java.util.Properties;
import java.util.ResourceBundle;

public class PropertyLoader {

  public static Properties loadProperties(String name, ClassLoader loaderthrows Exception {
    if (name.startsWith("/"))
      name = name.substring(1);
    if (name.endsWith(SUFFIX))
      name = name.substring(0, name.length() - SUFFIX.length());
    Properties result = new Properties();
    InputStream in = null;
    if (loader == null)
      loader = ClassLoader.getSystemClassLoader();
    if (LOAD_AS_RESOURCE_BUNDLE) {
      name = name.replace('/''.');
      ResourceBundle rb = ResourceBundle.getBundle(name, Locale.getDefault(), loader);
      for (Enumeration keys = rb.getKeys(); keys.hasMoreElements();) {
        result.put((Stringkeys.nextElement(), rb.getString((Stringkeys.nextElement()));
      }
    else {
      name = name.replace('.''/');
      if (!name.endsWith(SUFFIX))
        name = name.concat(SUFFIX);
      in = loader.getResourceAsStream(name);
      if (in != null) {
        result = new Properties();
        result.load(in)// can throw IOException
      }
    }
    in.close();
    return result;
  }

  public static Properties loadProperties(final String namethrows Exception {
    return loadProperties(name, Thread.currentThread().getContextClassLoader());
  }

  private static final boolean LOAD_AS_RESOURCE_BUNDLE = false;

  private static final String SUFFIX = ".properties";

}

   
    
    
    
    
    
  
Related examples in the same category
1.Read a set of properties from the received input stream, strip off any excess white space that exists in those property values,
2.Copy a set of properties from one Property to another.
3.Sorts property list and print out each key=value pair prepended with specific indentation.
4.Sorts a property list and turns the sorted list into a string.
5.A utility class for replacing properties in strings.
6.Property access utility methods
7.Represents a persistent set of properties
8.Converts specified map to java.util.Properties
9.A java.util.Properties class that will check a file or URL for changes periodically
10.Encapsulates java.util.Properties to add java primitives and some other java classes
11.Load and save properties to files.
12.Adds new properties to an existing set of properties
13.Extracts a specific property key subset from the known properties
14.Observable Properties
15.Merge Properties Into Map
16.XML configuration management
17.JDOM based XML properties
18.XML Properties
19.Converts Unicode into something that can be embedded in a java properties file
20.Create Properties from String array
21.Task to overwrite Properties
22.Gets strong-type-value property from a standard Properties
23.The properties iterator iterates over a set of enumerated properties.
24.An utility class to ease up using property-file resource bundles.
25.Sorted Properties
26.A subclass of the java.util.Properties class that must be initialized from a file on disk
27.This class contains a collection of static utility methods for creating, retrieving, saving and loading properties.
28.Simplify routine job with properties
29.Property Manager
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.