A.Localeloc=Locale.getLocale();System.out.println(loc.getDisplayCountry()+""+df.format(d));
B.Localeloc=Locale.getDefault();System.out.println(loc.getDisplayCountry()+""+df.format(d));
C.Localeloc=Locale.getLocale();System.out.println(loc.getDisplayCountry()+""+df.setDateFormat(d));
D.Localeloc=Locale.getDefault();System.out.println(loc.getDisplayCountry()+""+df.setDateFormat(d));