
- Forum
- Programming Talk
- Java
- Interface Internationalistion
Interface Internationalistion
This is a discussion on Interface Internationalistion within the Java forums, part of the Programming Talk category; I have to create a page which will have radio buttons These radio buttons will decide the language of the ...
-
Interface Internationalistion
I have to create a page which will have radio buttons
These radio buttons will decide the language of the page to be displayed in like English, Hindi, Tamil etc.,. How can I find or read data selected by several users? How to store the data on the property file?
-
Use `store` method of properties class to store the properties object to a file.
Properties class has hashtable data structure of String keys along with String value for each key.
To manage properties, create instances of java.util.Properties. This class provides methods for the following:
- Loading key/value pairs into a Properties object from a stream,
- Retrieving a value from its key,
- Listing the keys and their values,
- Enumerating over the keys, and
- Saving the properties to a stream.

Reply With Quote





