gistfile1.txt private static ResourceBundle rb; private static BufferedInputStream inputStream; static { String proFilePath = System.getProperty("user.dir") +"\\config\\resourceBundle.properties"; try { inputStream = new BufferedInputStream
private static ResourceBundle rb;
private static BufferedInputStream inputStream;
static {
String proFilePath = System.getProperty("user.dir") +"\\config\\resourceBundle.properties";
try {
inputStream = new BufferedInputStream(new FileInputStream(proFilePath));
rb = new PropertyResourceBundle(inputStream);
inputStream.close();
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
