0

我正在使用 'com.jakewharton.threetenabp:threetenabp:1.2.4' 库为较低的 API 版本使用较新的功能 DateTimeFormatter。

我有一种情况,我必须首先转换 JSON 响应中的日期,即“2020-07-23T00:00:00.000Z”这种格式。

然后我必须得到开始和结束日期之间的秒数才能启动计数器。

这是我创建的解决方案:

public static long dateFormat(String start, String end) {
            DateTimeFormatter inputFormatter = DateTimeFormatter.ofPattern("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'", Locale.ENGLISH);
            DateTimeFormatter outputFormatter = DateTimeFormatter.ofPattern("dd-MM-yyy", Locale.ENGLISH);
            LocalDate startDate = LocalDate.parse(start, inputFormatter);
            LocalDate endDate = LocalDate.parse(end, inputFormatter);
            String start_date = outputFormatter.format(startDate);
            String end_date = outputFormatter.format(endDate);
            LocalDate sDate = LocalDate.parse(start_date, outputFormatter);
            LocalDate eDate = LocalDate.parse(end_date, outputFormatter);
            return ChronoUnit.SECONDS.between(sDate, eDate);
        }

我收到错误“org.threeten.bp.temporal.UnsupportedTemporalTypeException:不支持的单位:秒”

我正在调用适配器内部的方法,我认为这可能是导致问题的原因。

这是我的适配器代码:

 public class ViewHolder extends BaseViewHolder {
        @BindView(R.id.offer_pic)
        ImageView offers_pic;
        @BindView(R.id.offer_countdown)
        CountdownView offer_countdown;
       
        ViewHolder(View itemView) {
            super(itemView);
            ButterKnife.bind(this, itemView);
            prefManager = new PrefManager(mContext);

        }

      

        public void onBind(int position) {
            super.onBind(position);
            Doc item = mData.get(position);

            offer_title.setText(item.getTitle());
            offer_short_desc.setText(item.getDescription());
            Glide.with(mContext)
                    .asBitmap()
                    .load(item.getImage())
                    .into(offers_pic);

            
            Log.d("diff1", ViewUtils.dateFormat(item.getStart(), item.getEnd()) + "empty");

        }
    }

是的,我已经在 AndroidThreeTen.init(getActivity());之类的片段中对其进行了初始化。

我是这种时间和日期格式的新手。一些帮助将不胜感激。

4

1 回答 1

1

您不需要DateTimeFormatter为给定的日期时间字符串创建一个,因为它已经采用Instant#parse. 此外,您不需要将解析的日期时间从转换Instant为其他类型,因为它ChronoUnit.SECONDS.between适用于任何Temporal类型。

import java.time.Instant;
import java.time.temporal.ChronoUnit;

public class Main {
    public static void main(String[] args) {
        // Test
        System.out.println(secondsBetween("2020-07-23T00:00:00.000Z", "2020-07-23T00:10:20.000Z"));
    }

    public static long secondsBetween(String startDateTime, String endDateTime) {
        return ChronoUnit.SECONDS.between(Instant.parse(startDateTime), Instant.parse(endDateTime));
    }
}

输出:

620

关于您提到的异常的注释: 您尝试secondsLocalDate仅包含日期部分(即年、月和月中的日期)而不包含任何时间部分(即小时、分钟、秒、纳秒等)的对象中获取.)。如果您尝试使用具有时间组件的类型(例如LocalDateTime),您将不会遇到此异常。

于 2020-09-12T11:40:11.060 回答