I want to create a load a property file with the following stmt:
try {
resourceBundle = model.getResourceBundle(BASE_NAME_UI_RESOURCES);
}catch (ApplicationException e) {
System.err.println("Exception: " + e);
}
However, there is "Uncaught exception java/lang/OutOfMemoryError" when itry to run the program.
Can anyone help me figure out my problem? or perhaps give me an example on how to load a property file?
tnx in advance.