在Android

时间:2017-07-04 10:32:19

标签: java android date-format datetime-format time-format

我知道有很多类似的问题,到目前为止我尝试的一些解决方案,但没有完全回答我的问题:thisthisthisthisthisthisthisthisthisthis等等。

我正在创建一个应用程序,我从服务器获取用户的帖子并按日期排序,并显示在帖子中创建的日期和时间。现在 我有一个可行的解决方案 ,我是通过将此格式yyyy-MM-dd HH:mm:ss的服务器中的字符串转换为自定义日期和时间格式来实现的。< / p>

问题是:我不想对格式进行硬编码,而是希望以用户手机的格式显示格式,并为日期和日期单独执行 时间即可。根据手机的本地格式我的意思是 - am-pm / 24小时格式,日期格式相同 - dd-MM-YY,或MM-dd-YYYY,或dd-MM等。

到目前为止,我已经查看了很多解决方案, 大多数都采用硬编码格式 。我试图避免,但我认为另外一个问题是我想将日期和时间与日期时间字符串分开。另一个问题是 转换在日期和时间上并不是分开的

简而言之,我想将2017-07-04 12:00:00格式化为04 Jul 201712:00 PM,或07/04/1712:00。即。 将日期和时间分成两个字符串,并以本地化的电话格式显示

我的适配器:

 public class UserPostsAdapter extends RecyclerView.Adapter<UserPostsAdapter.PostsViewHolder> {

     private List<UserPosts> postItems;
     private Context context;
     private static final String TAG = UserPosts.class.getSimpleName();

     class PostsViewHolder extends RecyclerView.ViewHolder {
    TextView userPostsTitle, userPostsDate, userPostsTime, userPost, textViewStars, textViewComments;
         ImageView imageViewDisplayComments, imageViewReply, imageViewCommentStar;
         String pCcontactId, postId;

         PostsViewHolder(View itemView) {
             super(itemView);

             userPostsTitle = (TextView) itemView.findViewById(R.id.userPostsTitle);
             userPostsDate = (TextView) itemView.findViewById(R.id.userPostsDate);
             userPostsTime = (TextView) itemView.findViewById(R.id.userPostsTime);
             userPost = (TextView) itemView.findViewById(R.id.userPost);

             textViewStars = (TextView) itemView.findViewById(R.id.textViewStars);
             textViewComments = (TextView) itemView.findViewById(R.id.textViewComments);

             imageViewCommentStar = (ImageView) itemView.findViewById(R.id.imageViewCommentStar);
             imageViewDisplayComments = (ImageView) itemView.findViewById(R.id.imageViewDisplayComments);
             imageViewReply = (ImageView) itemView.findViewById(R.id.imageViewReply);
         }
     }

     public UserPostsAdapter(List<UserPosts> postsList, Context context) {
         this.postItems = postsList;
         this.context = context;
     }

     @Override
     public UserPostsAdapter.PostsViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
         View itemView = LayoutInflater.from(parent.getContext()).inflate(R.layout.card_user_post, parent, false);

         return new UserPostsAdapter.PostsViewHolder(itemView);
     }

     @Override
     public void onBindViewHolder(final UserPostsAdapter.PostsViewHolder holder, int position) {
         final UserPosts post = postItems.get(position);

         SQLiteHandler db = new SQLiteHandler(context.getApplicationContext());
         HashMap<String, String> user = db.getUserDetails();
         final String currentUserId = user.get("uid");

         if (post.getTitle() != null && !post.getTitle().isEmpty()) {
             holder.userPostsTitle.setText(post.getTitle());
         } else {
             holder.userPostsTitle.setVisibility(View.GONE);
         }
         holder.userPostsDate.setText(convertDate(postItems.get(position).getCreatedDate()));
         holder.userPostsTime.setText(convertTime(postItems.get(position).getCreatedTime()));
         holder.userPost.setText(post.getPostedText());
         if (Integer.parseInt(post.getLikesNumber()) > 0) {
             holder.textViewStars.setText(post.getLikesNumber());
         }
         holder.textViewComments.setText(post.getCommentsNumber());

         holder.pCcontactId = post.getUserId();
         final String postId = holder.postId = post.getId();

         holder.imageViewDisplayComments.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {

            }
     });

     ***TRANSFORMING DATE AND TIME SEPARATELY TO CUSTOM FORMAT***
-----------------------------------------------------------------------------
private String convertDate(String time) {

    SimpleDateFormat dateFormatReceived = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss", Locale.getDefault());
    SimpleDateFormat dateFormatConverted = new SimpleDateFormat("dd MMM yyyy", Locale.getDefault());
    java.util.Locale.getDefault());

    SimpleDateFormat(datePattern);

      DateFormat.getTimeInstance(DateFormat.SHORT).parse(mTimeDisplay.getText().toString());

    java.util.Date date = null;

    try {
        date = dateFormatReceived.parse(time);
    } catch (ParseException e) {
        e.printStackTrace();
    }

    return dateFormatConverted.format(date);
}

private String convertTime(String time) {

    SimpleDateFormat timeFormatReceived = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss", Locale.getDefault());
    SimpleDateFormat timeFormatConverted = new SimpleDateFormat("HH:mm", Locale.getDefault());

    java.util.Date date = null;

    try {
        date = timeFormatReceived.parse(time);
    } catch (ParseException e) {
        e.printStackTrace();
    }

    return timeFormatConverted.format(date);
}
-----------------------------------------------------------------------------
     @Override
     public int getItemCount() {
         return postItems.size();
     }
 }

3 个答案:

答案 0 :(得分:4)

Usman Rana’s answer是正确的并且解释得很好。我想要贡献的是现代答案,因为SimpleDateFormatDate的替换已经出现多年了。

    String dateTimeString = "2017-07-04 12:00:00";
    LocalDateTime dateTime = LocalDateTime.parse(dateTimeString,
            DateTimeFormatter.ofPattern("uuuu-MM-dd HH:mm:ss"));
    String formattedDate 
            = dateTime.format(DateTimeFormatter.ofLocalizedDate(FormatStyle.MEDIUM));
    System.out.println(formattedDate);
    String formattedTime 
            = dateTime.format(DateTimeFormatter.ofLocalizedTime(FormatStyle.MEDIUM));
    System.out.println(formattedTime);

在我的电脑上打印

04-07-2017
12:00:00

这个想法正是您所要求的,这些是我的计算机上设置的日期格式和时间格式,因此每个设备都会以自己喜欢的方式打印日期和时间。

请注意此处存在潜在的时区问题。如果你想在用户的手机上显示服务器的时间,无论用户带他/她的手机在世界的哪个地方,你应该没问题。如果您想使用手机的时区,则需要先转换日期时间,然后您需要知道服务器时区。或者可能更好,服务器需要以UTC格式发送日期和时间。

我正在使用的现代Java日期和时间API将原生于Android Java。在此之前,您将需要ThreeTenABP,即Android Java 7的后端。请参阅How to use ThreeTenABP in Android Project

答案 1 :(得分:3)

首先,我强烈建议您将日期保存为长(1)而不是字符串它会大大简化您的代码。您可以处理日期并在当前区域设置中显示日期,而无需在代码中使用单个格式字符串,例如“yyyy_MM_dd”。

然后在当前区域设置中获取日期或时间:

String dateLocalizedStr = DateFormat.getDateInstance().format(myDate);
String timeLocalizedStr = DateFormat.getTimeInstance().format(myDate);

您可以更改为长格式或短格式,将参数传递给getDateInstance()或getTimenstance()

(1)as long或Date,因为Date内部为long。

答案 2 :(得分:2)

让我逐步解释:

  1. 您可以了解设备的默认日期格式。
  2. 您必须知道服务器发送给您的日期格式。
  3. 制作日历实例并设置日期时间 来自服务器。
  4. 然后您可以格式化日期和时间,如下所示(输入到 SimpleDateFormat是您在步骤1)中确定的格式:
  5. 代码:

    String formattedDate = new SimpleDateFormat("yyyy-MM dd", Locale.getDefault())
            .format(Calendar.getInstance()‌​.getTime()); 
    
    String formattedTime = new SimpleDateFormat("HH:mm:ss", Locale.getDefault())
            .format(Calendar.getInstance().g‌​etTime());