MissingResource Exception

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
Sam

MissingResource Exception

Post by Sam » Wed Jul 24, 2002 3:44 pm

I am having this error when I try to run my applet:

Can't find bundle for base name com.jrefinery.data.resources.DataPackageResources, locale en_US

I have all the classes in the resources directory installed.

David Gilbert

Re: MissingResource Exception

Post by David Gilbert » Wed Jul 24, 2002 5:42 pm

Hi Sam,

Are you using the jar file from the download or one you have created yourself?

The resource bundles in the com.jrefinery.data.resources.* are dynamically loaded, but never referenced directly in the code. So you have to be careful when you recompile JCommon to ensure that these classes are actually compiled. I checked the jcommon-0.6.4.jar file and the correct .class files are there, so it should be working if you use that file.

Regards,

DG.

Locked