
import java.lang.instrument.Instrumentation;
import sun.util.locale.provider.LocaleServiceProviderPool;

public class LocaleInitAgent {
    public static void premain(String agentArgs, Instrumentation inst) {
        try {
            LocaleServiceProviderPool.getAllAvailableLocales();
        } catch (Exception ex) {}
    }
}