D
dennishancy
I have this code:
---------------------
ResourceBundle bundle = ResourceBundle.getBundle( "EUWConfig" );
_loggerFileTemp = bundle.getString("LoggerFile");
---------------------
Being new to most things about Java, I have some questions about this.
1) Is it assumed that "EUWConfig" is a properties file? Or do I need
to specify?
2) What folder does that file have to be in?
3) In my EUWConfig.properties file, I have a property called
LoggerFile. Is the syntax of the second line correct?
It seems to compile OK. The problem is when I run it, the web page
will not display. Can someone point me in the right direction?
Thanks.
Dennis Hancy
Eaton Corporation
Cleveland, OH
---------------------
ResourceBundle bundle = ResourceBundle.getBundle( "EUWConfig" );
_loggerFileTemp = bundle.getString("LoggerFile");
---------------------
Being new to most things about Java, I have some questions about this.
1) Is it assumed that "EUWConfig" is a properties file? Or do I need
to specify?
2) What folder does that file have to be in?
3) In my EUWConfig.properties file, I have a property called
LoggerFile. Is the syntax of the second line correct?
It seems to compile OK. The problem is when I run it, the web page
will not display. Can someone point me in the right direction?
Thanks.
Dennis Hancy
Eaton Corporation
Cleveland, OH