Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
Table of Contents |
---|
Thai |
---|
ลักษณะ |
Thai |
---|
ตัวอย่างโค้ด |
Code Block | ||
---|---|---|
| ||
import java.util.Date; import org.joget.commons.util.TimeZoneUtil; import org.joget.apps.app.service.AppUtil; //Format current date to System/User selected timezone and date format String dateString = TimeZoneUtil.convertToTimeZone(new Date(), null, AppUtil.getAppDateFormat()); |
Thai |
---|
กระบวนการ |
public static java.lang.String convertToTimeZone(java.lang.Date time, java.lang.String gmt, java.lang.String format)
...
format - follow java.text.SimpleDateFormat syntax.
Thai |
---|
แปลงวันที่เป็นสตริงตาม GMT / Timezone ID และรูปแบบวันที่ พารามิเตอร์: gmt - GMT ("-12" ถึง "12") หรือ ID เขตเวลา, NULL เพื่อใช้เขตเวลา / ระบบที่ผู้ใช้เลือก รูปแบบ - ติดตาม java.text.SimpleDateFormat ไวยากรณ์ |
public static java.util.Map<java.lang.String, java.lang.String> getList()
...
Return a map of time zone id and its description
Thai |
---|
ดึงรายการของเขตเวลา ส่งคืนแผนที่ของรหัสเขตเวลาและคำอธิบาย |
public static java.lang.String getServerTimeZone()
Retrieve Server Time Zone in GMT format
Thai |
---|
ดึงเขตเวลาของเซิร์ฟเวอร์ในรูปแบบ GMT |
public static java.lang.String getServerTimeZoneID()
Retrieve Server Time Zone ID
Thai |
---|
ดึง ID เขตเวลาของเซิร์ฟเวอร์ |
public static java.lang.String getTimeZoneByGMT(java.lang.String gmt)
Get Time Zone ID by GMT
...
Thai |
---|
รับรหัสเขตเวลาตาม GMT |