私のマシンでは、設定されたタイムゾーンは (UTC) 協定世界時です。しかし、以下のサンプル コードはパキスタン時間と +5:00 を返します。
private void Foo()
{
DateTimeFormatter dtf = DateTimeFormat.forPattern("ZZ");
DateTime dt = DateTime.now();
System.out.println(dtf.print(dt)); // Prints +05:00, though expected is +00:00
DateTimeZone tz = DateTimeZone.getDefault();
System.out.println(" Get Name " + tz.getName(System.currentTimeMillis()));
// Prints Get Name Pakistan Time , although expected is Coordinated Universal Time
}