object ClasspathResource
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ClasspathResource
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def load(name: String): Option[InputStream]
Loads the named resource from the classpath to return an optional InputStream.
Loads the named resource from the classpath to return an optional InputStream. If the resolved resource exists and has a non-zero number of readable bytes an InputStream will be returned otherwise a None is returned.
Resolution of the path to the named resource is ALWAYS assumed to be absolute, that is, if the given
name
does not begin with a/
(\u002f
), one will be prepended to the given name. E.g.,load("foo.txt")
will attempt to load the resource with the absolute name/foo.txt
.Usage
load("foo.txt") // loads the classpath resource `/foo.txt` load("/foo.txt") // loads the classpath resource `/foo.txt` load("foo/bar/file.txt") // loads the classpath resource `/foo/bar/file.txt` load("/foo/bar/file.txt") // loads the classpath resource `/foo/bar/file.txt`
- Note
The caller is responsible for managing the closing of any returned InputStream.
- See also
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()