Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Fatal Error: missing resource: java.util.PropertyResourceBundle

Status
Not open for further replies.

Mesk69

Programmer
Feb 6, 2003
12
CA
Hey guys, I've been trying to get some java beans to work. This is the error I've been getting lately.

Fatal Error: missing resource: java.util.PropertyResourceBundle

Anyone have an idea as to what the problem is?

Thanks for taking the time to read and write ;)

Mesk
 
are u importing the package in the jsp file?

If not, use

<@ import =&quot;java.util.*&quot;>
 
Yep I am, I ever tryed including
java.util.PropertyResourceBundle
 
Seems to be a problem locating the rt.jar (i.e. the Java runtime environment) classes.
 
Is that the whole exception?

Usually when you get a missing resource exception when using a ResourceBundle it is because one of the resources (e.g. properties) that you are trying to access isn't found in the property file. Read up on the RB api--it is pretty clear.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top