Issue
On our project, we get currency whith java.util.Currency for each country. The problem is that a country will change its currency to EUR and we will need a new Java release that contains this change the same day. Is there a way to cutomize the currency of a Locale on the launching of JVM ?
Thank you in advance.
Solution
I found a solution. We can override currencies by adding a properties file named currency.properties on <JAVA_HOME>/lib.
#Sample currency properties
JP=JPZ,999,0
Answered By - hicben
Answer Checked By - Clifford M. (JavaFixing Volunteer)