Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例子
3:50 = 这是格林威治标准时间 +2 的时间,并在 24 小时前将其放入微调器项目中。 4:20 至 12:50
感谢您分享想法。
这将为您提供 GMT+2 中的当前小时和分钟
TimeZone timeZone = new TimeZone(); timeZone.setOffset(2); Calendar calendar = Calendar.getInstance(timeZone); int hour = calendar.get(Calendar.HOUR_OF_DAY); int minute = calendar.get(Calendar.MINUTE);