I'm reading an XML file inside a product to collects its inventory information i.e. various components it contains and when they are installed. I know from the product properties file that locale of the product is "ccjk". It stands for simplified Chinese for Japanese and Korean I guess. I want to set the locale of the shell before I run this Java program so that it pics the locale from the shell environment. Usually locale is set in the following way
export LOCALE="ch_TW.UTF_8" This locale is Chinese for Taiwanese and the UTF_8 stands for character encoding. I would like to know the string something like above ch_TW.UTF_8 which I need to put my locale to ccjk.
quicke help is highly appreciated