如标题所述,如果我在JodaTime中有一个DateTime对象:import org.joda.time.DateTime val currentDateTime = new DateTime() 变量currentDateTime应该为我提供本地时区的日期和时间。如何从这里获取DateTimeZone的currentDateTime? 最佳答案 调用getZone()方法:currentDateTime.getZone()