The key here is in a change that's part of Java 7 to allow updating of the list of currencies without rebuilding rt.jar by replacing a file called currency.data
. Using this approach, rather than the currency.properties
override approach, allows you to add new Currency codes without affecting other ones from the same country.
What's left unsaid there is how to go about actually building a new currency.data
.
This file is generated from a file called CurrencyData.properties
, which can be found in the OpenJDK source code in java/util.
What I did was copy the CurrencyData.properties
found in the OpenJDK source (openjdkjdksrcshareclassesjavautil
), and changed the line:
BZD084-CAD124-CDF976-CHF756-CLF990-CLP152-CNY156-COP170-CRC188-CSD891-CUP192-
to
BZD084-CAD124-CDF976-CHF756-CLF990-CLP152-CNH156-CNY156-COP170-CRC188-CSD891-CUP192-
Then I grabbed the GenerateCurrencyData.java
file in the source distribution at openjdkjdkmakeoolssrcuildoolsgeneratecurrencydata
. This utility takes input from System.In in the same format as CurrencyData.properties, and turns it in to a currency.data file. I made a slight change so that it used a FileInputStream instead of System.In:
currencyData.load(System.in);
to
currencyData.load(new FileInputStream(fileName));
Run that on your edited CurrencyData.properties file and, after putting the original .data file somewhere safe, place the resulting currency.data file in to your JRElib directory, and you can now run code that uses Currency.getInstance("CNH")
.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…