What is the getResourceAsStream() method?
Are you preparing for IT certification? With practice questions, study notes, interactive quizzes, tips and technical articles, uCertify PrepKits ensure that you get a solid grasp of core technical concepts to ace your certification exam in first attempt.
What is the getResourceAsStream() method?
Rating:
The getResourceAsStream() method is a method of the Class class. It is used to read a resource with a specified name from the JAR file. It returns null if the JAR file contains no such resource. The resource name can be given in two forms:
- Absolute: In absolute form a programmer provides a full qualified name, which includes full path, and the resource name such as packagename/resourcename.
- Relative: In relative form a programmer provides the name of the resource to be read.
Here, the name parameter is the name of the resource.
Rating:
Was this information helpful?
Other articles
- What is the prevFrame() method?
- What is the getCaretPosition() method?
- What is the getMIDlet() method?
- What is the getFilter() method?
- What is the setMode() method?