หน้าเว็บ

วันอาทิตย์ที่ 11 พฤศจิกายน พ.ศ. 2555

Date Format Locale Thai : java

...
...
...
    Format formatter;
    formatter = new SimpleDateFormat("EEEE ที่ dd เดือน MMMM พ.ศ. yyyy", new Locale("th", "TH"));
    System.out.println(formatter.format(new Date()));

    //วันจันทร์ ที่ 12 เดือน พฤศจิกายน พ.ศ. 2555
...
...
...

4 ความคิดเห็น:

  1. วันจันทร์ ที่ 10 เดือน กรกฎาคม พ.ศ. 2017
    มันยังเป็น 2017 ยุอะครับ

    ตอบลบ
  2. to nice
    //2020-09-01 17:45:10
    val dt = SimpleDateFormat("yyyy-MM-dd")
    val date: Date = dt.parse(header)
    // *** same for the format String below
    var dt1 = SimpleDateFormat("dd MMM yyyy", Locale("th", "TH"))
    Log.e("date", "Date :" + dt1.format(date))

    ตอบลบ