Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

Description

Thai

ลักษณะ

  • org.joget.commons.util.DateUtil
  • Under wflow-commons module
  • Utility methods to deal with date value

Code Sample

Thai

ตัวอย่างโค้ด

Code Block
languagejava
import org.joget.commons.util.DateUtil;
 
String dateValue = "2015-06-01";
String format = "yyyy-MM-dd";
 
//check the format
boolean valid = DateUtil.validateDateFormat(dateValue, format);

Methods

Thai

กระบวนการ

compare
public static boolean compare(String start, String end, String format)

To check an end date is after a start date. Format following syntax of java.text.SimpleDateFormat.

Thai

เพื่อตรวจสอบวันที่สิ้นสุดคือหลังจากวันที่เริ่มต้น จัดรูปแบบไวยากรณ์ต่อไปนี้ของ java.text.SimpleDateFormat

validateDateFormat
public static boolean validateDateFormat(String value, String format)

To validate a date value is in correct date format. Format following syntax of java.text.SimpleDateFormat.

 

...

Thai

เพื่อตรวจสอบค่าวันที่ในรูปแบบวันที่ที่ถูกต้อง จัดรูปแบบไวยากรณ์ต่อไปนี้ของ java.text.SimpleDateFormat