java.util.Currency.getAvailableCurrencies() The method java.util.Currency.getAvailableCurrencies() returns set of all available currencies, which may include currencies that represent obsolete ISO 4217 codes.
Continue reading Java Util Currency getAvailableCurrenciesjava-util
Java Locale information In this tutorial we’re going to show how to get information from Locale, display it nicely to users and get installed locales in the system.
Continue reading Java Locale informationJava Locale create in different ways In this tutorial we’re going to show how to create Locale using builder, constructors, and factory method for different languages and variants to get localized dates.
Continue reading Java Locale create in different waysJava Scanner read from String File/Path InputStream In this tutorial we’re going to show how to use Java Scanner to read data from different input sources – String, File/Path, and InputStream.
Continue reading Java Scanner from String File/Path InputStreamJava ListResourceBundle tutorial In this tutorial we’re going to show how to use Java ListResourceBundle to make you program speak in different languages.
Continue reading Java ListResourceBundle exampleJava programmatic ResourceBundle – dynamic translations In this tutorial we’re going to implement own ResourceBundle to show how to provide locale-sensitive values dynamically.
Continue reading Java programmatic ResourceBundle – dynamic translationsJava ResourceBundle internationalize program In this tutorial we’re going to implement a simple dictionary to show how to use Resourcebundle to internationalize program in an easy way.
Continue reading Java ResourceBundle – internationalized programProblem: How to create Java Calendar instances and display its details? In the following example we’ll show how to create Calendar in an old way and using the new Java 8 Builder.
Continue reading Java CalendarProblem: How to use Java Base64 to encode data using URL and Filename safe Base64 Alphabet? In the following example we’ll show how to use Base64 util class, available since Java 8.
Continue reading Java Base64 URLProblem: How to encode and decode Base64 MIME message in Java? In the following example we’ll show how to use Base64 util class available in Java 8 to do the work.
Continue reading Java Base64 MIME