How to extract strings to Resource Bundle files in Java?
- Strings can extract to a Resource Bundle file by using the method getString().
- The method getString() obtains the string from a key, given as a parameter.
- The key is given from a specific resource bundle.
- The method returns a String object and this method is final.
- The alternate to this method is:
(String) getObject(key);