วิธีแปลงมิลลิวินาทีเป็นรูปแบบวันที่ใน Android


คำตอบ:


214

ลองใช้รหัสตัวอย่างนี้: -

import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Calendar;


public class Test {

/**
 * Main Method
 */
public static void main(String[] args) {
    System.out.println(getDate(82233213123L, "dd/MM/yyyy hh:mm:ss.SSS"));
}


/**
 * Return date in specified format.
 * @param milliSeconds Date in milliseconds
 * @param dateFormat Date format 
 * @return String representing date in specified format
 */
public static String getDate(long milliSeconds, String dateFormat)
{
    // Create a DateFormatter object for displaying date in specified format.
    SimpleDateFormat formatter = new SimpleDateFormat(dateFormat);

    // Create a calendar object that will convert the date and time value in milliseconds to date. 
     Calendar calendar = Calendar.getInstance();
     calendar.setTimeInMillis(milliSeconds);
     return formatter.format(calendar.getTime());
}
}

ฉันหวังว่านี่จะช่วยได้ ...


ใช้งานได้กับค่ายาวมากกว่า 10 หลัก แต่ไม่ใช่ที่ 6 ขาลง ชั่วโมงมีค่าเริ่มต้น 4 .. ???
ralphgabb

5
คุณควรใช้SimpleDateFormat ใหม่ (dateFormat, Locale.US ( หรือสถานที่ของคุณ ))แทนSimpleDateFormat (dateFormat)ใหม่เนื่องจากทำให้เกิดความผิดพลาดเนื่องจากการเปลี่ยนภาษาเริ่มต้นของ Android
Amir Hossein Ghasemi

2
FYI, ลำบากเก่าชั้นเรียนวันที่เวลาเช่นjava.util.Date, java.util.Calendarและjava.text.SimpleDateFormatตอนนี้มรดกแทนที่ด้วยjava.timeชั้นเรียน มากjava.timeการทำงานจะกลับรังเพลิง Java 6 & Java 7 ในThreeTen-ย้ายกลับโครงการ ดัดแปลงเพิ่มเติมสำหรับ Android รุ่นก่อนหน้าในโครงการThreeTenABP ดูวิธีใช้ ThreeTenABP … .
Basil Bourque

@Uttam ใช้งานได้ขอบคุณ! แต่ฉันมีคำถาม เราควรได้รับเวลาและวันที่ในรูปแบบ "/ Date (1224043200000) /" หรือไม่ ฉันได้อ่านว่ามันเป็นรูปแบบ json เก่าของ microsoft และไม่ควรใช้ในการพัฒนาใหม่
Aldor


36
public static String convertDate(String dateInMilliseconds,String dateFormat) {
    return DateFormat.format(dateFormat, Long.parseLong(dateInMilliseconds)).toString();
}

เรียกใช้ฟังก์ชันนี้

convertDate("82233213123","dd/MM/yyyy hh:mm:ss");

2
ขอบคุณ Mahmood โซลูชันนี้ต้องการ API ระดับ 1 (โครงการของฉันถูกลดระดับเป็น API 15) ในขณะที่คำตอบอื่น ๆ ต้องการ API ระดับ 24 (วันที่และ / หรือไลบรารีปฏิทิน)
Steve Rogers

ถ้าคุณเป็นคนอเมริกันล่ะ?
behelit


10

ลองใช้รหัสนี้อาจช่วยแก้ไขให้ตรงกับความต้องการของคุณ

SimpleDateFormat format = new SimpleDateFormat("EEE MMM dd HH:mm:ss z yyyy");
Date d = format.parse(fileDate);

8

ในที่สุดฉันก็พบรหัสปกติที่เหมาะกับฉัน

Long longDate = Long.valueOf(date);

Calendar cal = Calendar.getInstance();
int offset = cal.getTimeZone().getOffset(cal.getTimeInMillis());
Date da = new Date(); 
da = new Date(longDate-(long)offset);
cal.setTime(da);

String time =cal.getTime().toLocaleString(); 
//this is full string        

time = DateFormat.getTimeInstance(DateFormat.MEDIUM).format(da);
//this is only time

time = DateFormat.getDateInstance(DateFormat.MEDIUM).format(da);
//this is only date

8

tl; dr

Instant.ofEpochMilli( myMillisSinceEpoch )           // Convert count-of-milliseconds-since-epoch into a date-time in UTC (`Instant`).
    .atZone( ZoneId.of( "Africa/Tunis" ) )           // Adjust into the wall-clock time used by the people of a particular region (a time zone). Produces a `ZonedDateTime` object.
    .toLocalDate()                                   // Extract the date-only value (a `LocalDate` object) from the `ZonedDateTime` object, without time-of-day and without time zone.
    .format(                                         // Generate a string to textually represent the date value.
        DateTimeFormatter.ofPattern( "dd/MM/uuuu" )  // Specify a formatting pattern. Tip: Consider using `DateTimeFormatter.ofLocalized…` instead to soft-code the formatting pattern.
    )                                                // Returns a `String` object.

java.time

วิธีการที่ทันสมัยใช้คลาสjava.timeที่แทนที่คลาสวันที่และเวลาเดิมที่ยุ่งยากซึ่งใช้โดย Answers อื่น ๆ ทั้งหมด

สมมติว่าคุณมีlongจำนวนมิลลิวินาทีตั้งแต่การอ้างอิงช่วงเวลาแรกของปี 1970 ใน UTC, 1970-01-01T00: 00: 00Z ...

Instant instant = Instant.ofEpochMilli( myMillisSinceEpoch ) ;

ในการรับวันที่ต้องใช้เขตเวลา ในช่วงเวลาใดวันที่จะแตกต่างกันไปทั่วโลกตามโซน

ZoneId z = ZoneId.of( "Pacific/Auckland" ) ;
ZonedDateTime zdt = instant.atZone( z ) ;  // Same moment, different wall-clock time.

แยกค่าวันที่เท่านั้น

LocalDate ld = zdt.toLocalDate() ;

สร้างสตริงที่แทนค่านั้นโดยใช้รูปแบบ ISO 8601 มาตรฐาน

String output = ld.toString() ;

สร้างสตริงในรูปแบบที่กำหนดเอง

DateTimeFormatter f = DateTimeFormatter.ofPattern( "dd/MM/uuuu" ) ;
String output = ld.format( f ) ;

เคล็ดลับ: ลองปล่อยให้java.timeแปลโดยอัตโนมัติแทนรูปแบบการจัดรูปแบบฮาร์ดโค้ด ใช้DateTimeFormatter.ofLocalized…วิธีการ


เกี่ยวกับjava.time

java.timeกรอบถูกสร้างขึ้นใน Java 8 และต่อมา ชั้นเรียนเหล่านี้แย่งลำบากเก่ามรดกเรียนวันที่เวลาเช่นjava.util.Date, และCalendarSimpleDateFormat

โครงการJoda-Timeขณะนี้อยู่ในโหมดการบำรุงรักษาแนะนำให้ย้ายไปยังคลาสjava.time

ต้องการเรียนรู้เพิ่มเติมโปรดดูที่ออราเคิลกวดวิชา และค้นหา Stack Overflow สำหรับตัวอย่างและคำอธิบายมากมาย สเปกJSR 310

คุณสามารถแลกเปลี่ยนวัตถุjava.timeโดยตรงกับฐานข้อมูลของคุณ ใช้ไดรเวอร์ JDBC ที่สอดคล้องกับJDBC 4.2หรือใหม่กว่า ไม่จำเป็นต้องมีสตริงไม่จำเป็นต้องมีjava.sql.*คลาส

จะหาคลาส java.time ได้ที่ไหน?

  • Java SE 8 , Java SE 9และใหม่กว่า
    • ในตัว.
    • ส่วนหนึ่งของ Java API มาตรฐานพร้อมการใช้งานแบบรวม
    • Java 9 เพิ่มคุณสมบัติและการแก้ไขเล็กน้อย
  • Java SE 6และ Java SE 7
    • มากของการทำงาน java.time จะกลับรังเพลิง Java 6 และ 7 ในThreeTen-ย้ายกลับ
  • Android
    • การใช้งานคลาส java.time เวอร์ชันล่าสุดของ Android
    • สำหรับก่อนหน้านี้ Android (<26) ที่ThreeTenABPโครงการปรับThreeTen-ย้ายกลับ (ดังกล่าวข้างต้น) ดูวิธีใช้ ThreeTenABP … .

โครงการThreeTen-Extraขยาย java.time ด้วยคลาสเพิ่มเติม โปรเจ็กต์นี้เป็นพื้นที่พิสูจน์สำหรับการเพิ่ม java.time ในอนาคต คุณอาจพบว่าการเรียนที่มีประโยชน์บางอย่างที่นี่เช่นInterval, YearWeek, YearQuarterและอื่น ๆ อีกมากมาย



4
public class LogicconvertmillistotimeActivity extends Activity {
    /** Called when the activity is first created. */
     EditText millisedit;
        Button   millisbutton;
        TextView  millistextview;
        long millislong;
        String millisstring;
        int millisec=0,sec=0,min=0,hour=0;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        millisedit=(EditText)findViewById(R.id.editText1);
        millisbutton=(Button)findViewById(R.id.button1);
        millistextview=(TextView)findViewById(R.id.textView1);
        millisbutton.setOnClickListener(new View.OnClickListener() {            
            @Override
            public void onClick(View v) {   
                millisbutton.setClickable(false);
                millisec=0;
                sec=0;
                min=0;
                hour=0;
                millisstring=millisedit.getText().toString().trim();
                millislong= Long.parseLong(millisstring);
                Calendar cal = Calendar.getInstance();
                SimpleDateFormat formatter = new SimpleDateFormat("HH:mm:ss");
                if(millislong>1000){
                    sec=(int) (millislong/1000);
                    millisec=(int)millislong%1000;
                    if(sec>=60){
                        min=sec/60;
                        sec=sec%60;
                    }
                    if(min>=60){
                        hour=min/60;
                        min=min%60;
                    }
                }
                else
                {
                    millisec=(int)millislong;
                }
                cal.clear();
                cal.set(Calendar.HOUR_OF_DAY,hour);
                cal.set(Calendar.MINUTE,min);
                cal.set(Calendar.SECOND, sec);
                cal.set(Calendar.MILLISECOND,millisec);
                String DateFormat = formatter.format(cal.getTime());
//              DateFormat = "";
                millistextview.setText(DateFormat);

            }
        });
    }
}

เราสามารถทำได้โดยใช้ Time Unit .. แต่มันไม่ได้ผล ... ใช้สิ่งนี้.. สิ่งนี้จะช่วยให้คุณ.. ทำงานได้ดี
Gaddam Nagaraju

2
    public static Date getDateFromString(String date) {

    Date dt = null;
    if (date != null) {
        for (String sdf : supportedDateFormats) {
            try {
                dt = new Date(new SimpleDateFormat(sdf).parse(date).getTime());
                break;
            } catch (ParseException pe) {
                pe.printStackTrace();
            }
        }
    }
    return dt;
}

public static Calendar getCalenderFromDate(Date date){
    Calendar cal =Calendar.getInstance();
    cal.setTime(date);return cal;

}
public static Calendar getCalenderFromString(String s_date){
    Date date = getDateFromString(s_date);
    Calendar cal = getCalenderFromDate(date);
    return cal;
}

public static long getMiliSecondsFromString(String s_date){
    Date date = getDateFromString(s_date);
    Calendar cal = getCalenderFromDate(date);
    return cal.getTimeInMillis();
}

ใช้วิธีการเหล่านี้เพื่อแปลงวันที่ในรูปแบบสตริงเช่น 2016-08-18 หรือประเภทใด ๆ ในรูปแบบสตริงเป็น DateFormat และคุณยังสามารถแปลงวันที่เป็นมิลลิวินาทีได้
Ravindra Rathour

2

ฉันมองหาวิธีที่มีประสิทธิภาพในการทำสิ่งนี้มาระยะหนึ่งแล้วและวิธีที่ดีที่สุดที่ฉันพบคือ:

DateFormat.getDateInstance(DateFormat.SHORT).format(new Date(millis));

ข้อดี:

  1. เป็นภาษาท้องถิ่น
  2. อยู่ใน Android ตั้งแต่ API 1
  3. ง่ายมาก

ข้อเสีย:

  1. ตัวเลือกรูปแบบที่ จำกัด FYI: SHORT เป็นตัวเลขปี 2 หลักเท่านั้น
  2. คุณเบิร์นวัตถุ Date ทุกครั้ง ฉันได้ดูแหล่งที่มาสำหรับตัวเลือกอื่น ๆ แล้วและนี่เป็นเพียงเล็กน้อยเมื่อเทียบกับค่าโสหุ้ยของพวกเขา

คุณสามารถแคชอ็อบเจ็กต์ java.text.DateFormat ได้ แต่ไม่ใช่ threadsafe สิ่งนี้ใช้ได้ถ้าคุณใช้มันบนเธรด UI



1

นี่เป็นวิธีที่ง่ายที่สุดโดยใช้ Kotlin

private const val DATE_FORMAT = "dd/MM/yy hh:mm"

fun millisToDate(millis: Long) : String {
    return SimpleDateFormat(DATE_FORMAT, Locale.US).format(Date(millis))
}

(1) โปรดอย่าสอนเด็ก ๆ ให้ใช้SimpleDateFormatชั้นเรียนที่ล้าสมัยและยุ่งยากมานาน อย่างน้อยก็ไม่ใช่ตัวเลือกแรก และไม่มีการจองใด ๆ วันนี้เรามีมากดีกว่าในการjava.timeที่ทันสมัย Java วันที่และเวลา API,DateTimeFormatterและ ใช่คุณสามารถใช้งานได้บน Android สำหรับ Android เก่าใช้ desugaring หรือดูวิธีการใช้ ThreeTenABP ในโครงการ
Ole VV

(2) ฉันไม่คิดว่าคุณตั้งใจเป็นตัวพิมพ์เล็กhh? โปรดตรวจสอบความแตกต่างระหว่างตัวพิมพ์ใหญ่และตัวพิมพ์เล็กที่นี่
Ole VV

วิธีที่ทันสมัยคือ: return Instant.ofEpochMilli(millis).atZone(ZoneId.systemDefault()).format(DateTimeFormatter.ofPattern(DATE_FORMAT, Locale.US)). ใช่มันยาวกว่าเพราะให้ข้อมูลเพิ่มเติมเกี่ยวกับสิ่งที่เกิดขึ้นจึงเป็นข้อดี
Ole VV

@ OleV.V. การโทรต้องใช้ API ระดับ 26
Rupam Das

@RupamDas ใช้desugaringหรือเพิ่มThreeTenABPในโปรเจ็กต์ Android ของคุณเพื่อใช้ java.time วันที่และเวลาของ Java API ที่ทันสมัยบน Android เวอร์ชันเก่า (ภายใต้ API ระดับ 26)
Ole VV

0

ใช้ SimpleDateFormat สำหรับ Android N ขึ้นไป ใช้ปฏิทินสำหรับเวอร์ชันก่อนหน้าเช่น:

if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
        fileName = new SimpleDateFormat("yyyy-MM-dd-hh:mm:ss").format(new Date());
        Log.i("fileName before",fileName);
    }else{
        Calendar cal = Calendar.getInstance();
        cal.add(Calendar.MONTH,1);
        String zamanl =""+cal.get(Calendar.YEAR)+"-"+cal.get(Calendar.MONTH)+"-"+cal.get(Calendar.DAY_OF_MONTH)+"-"+cal.get(Calendar.HOUR_OF_DAY)+":"+cal.get(Calendar.MINUTE)+":"+cal.get(Calendar.SECOND);

        fileName= zamanl;
        Log.i("fileName after",fileName);
    }

ผลลัพธ์:
fileName before: 2019-04-12-07: 14: 47  // use SimpleDateFormat
fileName after: 2019-4-12-7: 13: 12        // use Calender


0
fun convertLongToTimeWithLocale(){
    val dateAsMilliSecond: Long = 1602709200000
    val date = Date(dateAsMilliSecond)
    val language = "en"
    val formattedDateAsDigitMonth = SimpleDateFormat("dd/MM/yyyy", Locale(language))
    val formattedDateAsShortMonth = SimpleDateFormat("dd MMM yyyy", Locale(language))
    val formattedDateAsLongMonth = SimpleDateFormat("dd MMMM yyyy", Locale(language))
    Log.d("month as digit", formattedDateAsDigitMonth.format(date))
    Log.d("month as short", formattedDateAsShortMonth.format(date))
    Log.d("month as long", formattedDateAsLongMonth.format(date))
}

เอาท์พุท:

month as digit: 15/10/2020
month as short: 15 Oct 2020 
month as long : 15 October 2020

คุณสามารถเปลี่ยนค่าที่กำหนดเป็น "ภาษา" ได้เนื่องจากคุณต้องการ นี่คือรหัสภาษาทั้งหมด: รหัสภาษา Java


ลองทิ้งSimpleDateFormatเพื่อนและเพื่อนที่ล้าสมัยและมีชื่อเสียงมานาน ดูว่าคุณสามารถใช้desugaringหรือเพิ่มThreeTenABPในโปรเจ็กต์ Android ของคุณได้หรือไม่เพื่อที่จะใช้ java.time ซึ่งเป็น API วันที่และเวลา Java ที่ทันสมัย มันดีกว่ามากที่จะทำงานด้วย
Ole VV

-1

คุณสามารถสร้าง java.util.Date ในหน่วยมิลลิวินาที จากนั้นแปลงเป็นสตริงด้วย java.text.DateFormat

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.