怎么把yyy / MM / ss hh:mm:ss转换成秒?

时间:2019-05-23 10:55:48

标签: java date format epoch seconds

简介

我正在尝试从两个纪元获得秒数差异

2019-05-22 18:28:56-> 1558542536秒

2019-07-22 19:00:00-> 1563814800秒

差异将是:5,272,264‬秒

此日期格式来自二进制文件,为字符串

我的代码

public static void main(String[] args) throws ParseException
{
    String regEpoch = "";
    long result = 0;

    //System.out.println((fecha = dateFormat.format(date)));


    try(RandomAccessFile raf = new RandomAccessFile("binario2.txt", "rw")){
      //user inputs a code (for now, doesn't matter if exists or not)
      System.out.print("Input a code to look for: ");
        String code = scan.next();
            while(!code.matches("\\d+"))
            {
                System.out.println("[ERROR] Only digits accepted");
                System.out.print("Input a code to look for: ");
                    code = scan.next();
            }


        //Gets the current date in seconds
        long getSecs = (new Date().getTime())/1000;
        System.out.println("Current tiem in secs: " + getSecs);

        //We are "randomly accessing" a binary file. The is no problem here at all. It just works.
        //Sets the pointer where I want it, again... this works fine.
        raf.seek(27+(80*Integer.parseInt(code)));

        //Read the String date correctly, which is 2019-05-22 18:28:56
        System.out.println(raf.readUTF());

        /*
        //Attempt 2
        System.out.println(java.time.Instant.ofEpochSecond(Long.parseLong(raf.readUTF())));

        Long millis = new SimpleDateFormat("yyyy/MM/ss hh:mm:ss").parse(raf.readUTF()).getTime();
        System.out.println(millis);
        */

        //Let's try to convert it into seconds... No we can't due to -> Unparseable date: "2019-05-22 18:28:56"
        Date dt = dateFormat.parse(raf.readUTF());
        long epoch = dt.getTime();
        System.out.println("Result is: " + (int)(epoch*1000));




    }catch(IOException e){System.out.println("[ERROR] " + e);} 
}

问题

我已经阅读了很多有关如何将秒转换为纪元的问题,但是相反呢?

  • 我必须手动进行吗?
  • 有没有我没听说过的图书馆吗?

到目前为止,我尝试的操作仅使用SimpleDateFormat从日期中获取秒数,但那不是我期望的...

我对此有何期待

我目前正在做作业,一直在计算停车票的价格,我想,如果汽车在一周内没有离开,那该怎么办?

如果我仅以hh:mm:ss的格式工作,那些整整一周呆在那里的汽车将只支付一天的费用。

3 个答案:

答案 0 :(得分:5)

ChronoUnit

我总是使用ChronoUnit进行这样的计算。工作良好。

package test;

import java.text.ParseException;
import java.time.LocalDateTime;
import java.time.temporal.ChronoUnit;

public class Test2 {

    public static void main(String[] args) throws ParseException {

        LocalDateTime date1 = LocalDateTime.parse("2019-05-22T18:58:56");
        LocalDateTime date2 = LocalDateTime.parse("2019-05-23T19:00:00"); //LocalDateTime.now();

        long seconds = ChronoUnit.SECONDS.between(date1, date2);

        System.out.println(seconds);
    }

}

输出

  

86464

要使用SimpleDateFormat转换为日期,请参见例如Java time since the epoch

答案 1 :(得分:2)

Duration

java.time 类计算一个Duration

在调整为标准ISO 8601格式后解析您的输入。

LocalDateTime ldtStart = LocalDateTime.parse( "2019-05-22 18:28:56".replace( " " , "T" ) ) ;

时区

指定时区,以解决诸如夏令时(DST)之类的异常。日子不一定总是24小时。

ZoneId z = ZoneId.of( "America/Montreal" ) ;
ZonedDateTime zdtStart = ldtStart.atZone( z ) ;

计算持续时间。

Duration d = Duration.between( zdtStart , zdtStop ) ;

long seconds = d.toSeconds() ;  // Or `getSeconds` before Java 9.

对于停车费,您更可能需要几个小时。

long hours = d.toHours() ; 

答案 2 :(得分:1)

这应该有效

new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").parse("2019-05-22 18:28:56").getTime();