本文介绍了按年,月,日查找日期名称的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如果我在Java中有int year,int month,int day,如何查找日期名称?是否已有一些功能?
If I have int year, int month, int day in Java, how to find name of day ? Is there already some functions for this ?
推荐答案
使用,模式为 EEEE
获取星期几的名称。
Use SimpleDateFormat
with a pattern of EEEE
to get the name of the day of week.
// Assuming that you already have this.
int year = 2011;
int month = 7;
int day = 22;
// First convert to Date. This is one of the many ways.
String dateString = String.format("%d-%d-%d", year, month, day);
Date date = new SimpleDateFormat("yyyy-M-d").parse(dateString);
// Then get the day of week from the Date based on specific locale.
String dayOfWeek = new SimpleDateFormat("EEEE", Locale.ENGLISH).format(date);
System.out.println(dayOfWeek); // Friday
这里把它包装成一个很好的Java类。
Here it is wrapped all up into a nice Java class for you.
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.*;
public class DateUtility
{
public static void main(String args[]){
System.out.println(dayName("2015-03-05 00:00:00", "YYYY-MM-DD HH:MM:ss"));
}
public static String dayName(String inputDate, String format){
Date date = null;
try {
date = new SimpleDateFormat(format).parse(inputDate);
} catch (ParseException e) {
e.printStackTrace();
}
return new SimpleDateFormat("EEEE", Locale.ENGLISH).format(date);
}
}
这篇关于按年,月,日查找日期名称的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!