public interface ResourceLoader
Title: ResourceLoader.java
Description:
bboss workgroup
Copyright (c) 2007
| 限定符和类型 | 字段和说明 |
|---|---|
static java.lang.String |
CLASSPATH_URL_PREFIX
Pseudo URL prefix for loading from the class path: "classpath:"
|
| 限定符和类型 | 方法和说明 |
|---|---|
java.lang.ClassLoader |
getClassLoader()
Expose the ClassLoader used by this ResourceLoader.
|
org.frameworkset.util.io.Resource |
getResource(java.lang.String location)
Return a Resource handle for the specified resource.
|
static final java.lang.String CLASSPATH_URL_PREFIX
org.frameworkset.util.io.Resource getResource(java.lang.String location)
InputStreamSource.getInputStream() calls.
Note that a Resource handle does not imply an existing resource;
you need to invoke Resource.exists() to check for existence.
location - the resource locationCLASSPATH_URL_PREFIX,
Resource.exists(),
InputStreamSource.getInputStream()java.lang.ClassLoader getClassLoader()
Clients which need to access the ClassLoader directly can do so in a uniform manner with the ResourceLoader, rather than relying on the thread context ClassLoader.
null)