org.apache.velocity.util
Class ClassUtils

java.lang.Object
  extended byorg.apache.velocity.util.ClassUtils

public class ClassUtils
extends Object

Simple utility functions for manipulating classes and resources from the classloader.

Version:
$Id: ClassUtils.java 291585 2005-09-26 08:56:23Z henning $
Author:
Will Glass-Husain

Method Summary
static Object getNewInstance(String classname)
          Return a new instance of the given class.
static InputStream getResourceAsStream(Class claz, String name)
          Finds a resource with the given name.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getNewInstance

public static Object getNewInstance(String classname)
                             throws ClassNotFoundException,
                                    IllegalAccessException,
                                    InstantiationException
Return a new instance of the given class. Checks the ThreadContext classloader first, then uses the System classloader. Should replace all calls to Class.forName( claz ).newInstance() (which only calls the System class loader) when the class might be in a different classloader (e.g. in a webapp).

Parameters:
classname - the name of the class to instantiate
Returns:
Throws:
ClassNotFoundException
IllegalAccessException
InstantiationException

getResourceAsStream

public static InputStream getResourceAsStream(Class claz,
                                              String name)
Finds a resource with the given name. Checks the Thread Context classloader, then uses the System classloader. Should replace all calls to Class.getResourceAsString when the resource might come from a different classloader. (e.g. a webapp).

Parameters:
claz - Class to use when getting the System classloader (used if no Thread Context classloader available or fails to get resource).
name - name of the resource
Returns:


Copyright ? 2000-2007 Apache Software Foundation. All Rights Reserved.