如何根据设备配置正确格式化具有年,月,日,小时和分钟的日期和时间?
答案 0 :(得分:273)
使用标准的Java DateFormat类。
例如,要显示当前日期和时间,请执行以下操作:
Date date = new Date(location.getTime());
DateFormat dateFormat = android.text.format.DateFormat.getDateFormat(getApplicationContext());
mTimeText.setText("Time: " + dateFormat.format(date));
您可以使用自己的值初始化Date对象,但是您应该知道构造函数已被弃用,您应该使用Java Calendar对象。
答案 1 :(得分:186)
在我看来,android.text.format.DateFormat.getDateFormat(context)
让我感到困惑,因为此方法返回java.text.DateFormat
而不是android.text.format.DateFormat
- - “。
因此,我使用下面的片段代码以我的格式获取当前日期/时间。
android.text.format.DateFormat df = new android.text.format.DateFormat();
df.format("yyyy-MM-dd hh:mm:ss a", new java.util.Date());
or
android.text.format.DateFormat.format("yyyy-MM-dd hh:mm:ss a", new java.util.Date());
此外,您还可以使用其他格式。关注 DateFormat 。
答案 2 :(得分:94)
您可以使用The version of the constructor that takes a cancellation token creates a task that can be canceled using the <c>cancellation_token_source</c> the token was obtained from. Tasks created without a cancellation token are not cancelable.
。结果取决于手机的默认区域设置,但您也可以指定区域设置:
https://developer.android.com/reference/java/text/DateFormat.html
这是
的结果DateFormat
FR Locale:3 nov。 2017
US / En Locale:1952年1月12日
DateFormat.getDateInstance().format(date)
FR Locale:03/11/2017
US / En Locale:12.13.52
DateFormat.getDateInstance(DateFormat.SHORT).format(date)
FR Locale:3 nov。 2017
US / En Locale:1952年1月12日
DateFormat.getDateInstance(DateFormat.MEDIUM).format(date)
FR地区:2017年3月3日
US / En Locale:1952年1月12日
DateFormat.getDateInstance(DateFormat.LONG).format(date)
FR Locale:vendredi 3 novembre 2017
US / En Locale:1952年4月12日,星期二
DateFormat.getDateInstance(DateFormat.FULL).format(date)
FR Locale:3 nov。 2017 16:04:58
DateFormat.getDateTimeInstance().format(date)
FR Locale:03/11/2017 16:04
DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT).format(date)
FR Locale:03/11/2017 16:04:58
DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.MEDIUM).format(date)
FR Locale:03/11/2017 16:04:58 GMT + 01:00
DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.LONG).format(date)
FR Locale:03/11/2017 16:04:58 heure normale d'Europe centrale
DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.FULL).format(date)
FR语言环境:16:04:58
DateFormat.getTimeInstance().format(date)
FR语言环境:16:04
DateFormat.getTimeInstance(DateFormat.SHORT).format(date)
FR语言环境:16:04:58
DateFormat.getTimeInstance(DateFormat.MEDIUM).format(date)
FR语言环境:格林尼治标准时间16:04:58 + 01:00
DateFormat.getTimeInstance(DateFormat.LONG).format(date)
FR Locale:16:04:58 heure normale d'Europe centrale
答案 3 :(得分:36)
日期到区域设置日期字符串:
Date date = new Date();
String stringDate = DateFormat.getDateTimeInstance().format(date);
选项:
DateFormat.getDateInstance()
- &gt; 1969年12月31日
DateFormat.getDateTimeInstance()
- &GT; 1969年12月31日下午4:00:00
DateFormat.getTimeInstance()
- &GT;下午4:00:00
答案 4 :(得分:19)
这样做:
Date date = new Date();
java.text.DateFormat dateFormat = android.text.format.DateFormat.getDateFormat(getApplicationContext());
mTimeText.setText("Time: " + dateFormat.format(date));
答案 5 :(得分:14)
使用SimpleDateFormat
像这样:
event.putExtra("starttime", "12/18/2012");
SimpleDateFormat format = new SimpleDateFormat("MM/dd/yyyy");
Date date = format.parse(bundle.getString("starttime"));
答案 6 :(得分:14)
在此之后:http://developer.android.com/reference/android/text/format/Time.html
最好使用Android原生Time类:
Time now = new Time();
now.setToNow();
然后格式化:
Log.d("DEBUG", "Time "+now.format("%d.%m.%Y %H.%M.%S"));
答案 7 :(得分:9)
这是我的方法,你可以定义,输入和输出格式。
public static String formattedDateFromString(String inputFormat, String outputFormat, String inputDate){
if(inputFormat.equals("")){ // if inputFormat = "", set a default input format.
inputFormat = "yyyy-MM-dd hh:mm:ss";
}
if(outputFormat.equals("")){
outputFormat = "EEEE d 'de' MMMM 'del' yyyy"; // if inputFormat = "", set a default output format.
}
Date parsed = null;
String outputDate = "";
SimpleDateFormat df_input = new SimpleDateFormat(inputFormat, java.util.Locale.getDefault());
SimpleDateFormat df_output = new SimpleDateFormat(outputFormat, java.util.Locale.getDefault());
// You can set a different Locale, This example set a locale of Country Mexico.
//SimpleDateFormat df_input = new SimpleDateFormat(inputFormat, new Locale("es", "MX"));
//SimpleDateFormat df_output = new SimpleDateFormat(outputFormat, new Locale("es", "MX"));
try {
parsed = df_input.parse(inputDate);
outputDate = df_output.format(parsed);
} catch (Exception e) {
Log.e("formattedDateFromString", "Exception in formateDateFromstring(): " + e.getMessage());
}
return outputDate;
}
答案 8 :(得分:8)
将这两个用作类变量:
public java.text.DateFormat dateFormat = new SimpleDateFormat("dd/MM/yyyy");
private Calendar mDate = null;
并像这样使用它:
mDate = Calendar.getInstance();
mDate.set(year,months,day);
dateFormat.format(mDate.getTime());
答案 9 :(得分:8)
我使用SimpleDateFormat 没有自定义模式,以设备预先选择的格式从系统中获取实际日期和时间:
public static String getFormattedDate() {
//SimpleDateFormat called without pattern
return new SimpleDateFormat().format(Calendar.getInstance().getTime());
}
<强>返回强>:
答案 10 :(得分:7)
在Time类中使用build!
Time time = new Time();
time.set(0, 0, 17, 4, 5, 1999);
Log.i("DateTime", time.format("%d.%m.%Y %H:%M:%S"));
答案 11 :(得分:4)
此代码将返回当前日期和时间:
public String getCurrDate()
{
String dt;
Date cal = Calendar.getInstance().getTime();
dt = cal.toLocaleString();
return dt;
}
答案 12 :(得分:4)
这是最简单的方法:
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss a", Locale.US);
String time = df.format(new Date());
,如果您正在寻找模式,请选中此选项 https://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html
答案 13 :(得分:4)
此代码适用于我!
Date d = new Date();
CharSequence s = android.text.format.DateFormat.format("MM-dd-yy hh-mm-ss",d.getTime());
Toast.makeText(this,s.toString(),Toast.LENGTH_SHORT).show();
答案 14 :(得分:4)
其他答案通常是正确的。我想提出现代的答案。大多数其他答案中使用的类Date
,DateFormat
和SimpleDateFormat
已经过时,并且已经为许多程序员多年带来了麻烦。今天我们在java.time
,AKA JSR-310,现代Java日期&amp;时间API。你能在Android上使用它吗?当然!现代课程已经在ThreeTenABP项目中向后移植到Android。有关所有详细信息,请参阅this question: How to use ThreeTenABP in Android Project。
这个片段可以帮助您入门:
int year = 2017, month = 9, day = 28, hour = 22, minute = 45;
LocalDateTime dateTime = LocalDateTime.of(year, month, day, hour, minute);
DateTimeFormatter formatter = DateTimeFormatter.ofLocalizedDateTime(FormatStyle.MEDIUM);
System.out.println(dateTime.format(formatter));
当我将计算机的首选语言设置为美国英语或英国英语时,会打印:
Sep 28, 2017 10:45:00 PM
当我把它设置为丹麦语时,我得到:
28-09-2017 22:45:00
所以它确实遵循配置。我不确定它遵循设备的日期和时间设置的具体细节,但这可能因手机而异。
答案 15 :(得分:3)
EEE : Day ( Mon )
MMM : Full month name ( December )
MMM : Month in words ( Dec )
MM : Month ( 12 )
dd : Day in 2 chars ( 03 )
d: Day in 1 char (3)
HH : Hours ( 12 )
mm : Minutes ( 50 )
ss : Seconds ( 34 )
yyyy: Year ( 2020 ) //both yyyy and YYYY are same
YYYY: Year ( 2020 )
zzz : GMT+05:30
a : ( AM / PM )
aa : ( AM / PM )
aaa : ( AM / PM )
aaaa : ( AM / PM )
答案 16 :(得分:2)
我这样用:
public class DateUtils {
static DateUtils instance;
private final DateFormat dateFormat;
private final DateFormat timeFormat;
private DateUtils() {
dateFormat = android.text.format.DateFormat.getDateFormat(MainApplication.context);
timeFormat = android.text.format.DateFormat.getTimeFormat(MainApplication.context);
}
public static DateUtils getInstance() {
if (instance == null) {
instance = new DateUtils();
}
return instance;
}
public synchronized static String formatDateTime(long timestamp) {
long milliseconds = timestamp * 1000;
Date dateTime = new Date(milliseconds);
String date = getInstance().dateFormat.format(dateTime);
String time = getInstance().timeFormat.format(dateTime);
return date + " " + time;
}
}
答案 17 :(得分:2)
最短的方式:
// 2019-03-29 16:11
String.format("%1$tY-%<tm-%<td %<tR", Calendar.getInstance())
%tR
是%tH:%tM
的缩写,<
意味着重用最后一个参数(1$
)。
它等效于String.format("%1$tY-%1$tm-%1$td %1$tH:%1$tM", Calendar.getInstance())
https://developer.android.com/reference/java/util/Formatter.html
答案 18 :(得分:2)
尝试:
event.putExtra("startTime", "10/05/2012");
当您访问传递的变量时:
SimpleDateFormat formatter = new SimpleDateFormat("dd/MM/yyyy");
Date date = formatter.parse(bundle.getString("startTime"));
答案 19 :(得分:1)
回到2016年,当我想自定义格式时(不是根据你要求的设备配置......)我通常使用字符串资源文件:
在strings.xml中:
function convert(){
if(document.getElementByOptionValue("txtList1")==Euro(EUR) && document.getElementByOptionValue("txtList2")==Albania(LEK)){
var eur=document.getElementById("first");
var e=parseFloat(eur.value);
if(!validateForm())
return;
var l=e*135.82;
var lek=document.getElementById("second");
lek.value=l;
}
if(document.getElementByOptionValue("txtList1")==Albania(LEK) && document.getElementByOptionValue("txtList2")==Euro(EUR)){
var lek=document.getElementById("first");
var l=parseFloat(lek.value);
if(!validateForm())
return;
var e=l*138.92;
var eur=document.getElementById("second");
lek.value=l;
}
}
function validateForm(){
var f=document.getElementById("first");
if(f.value==""){
alert("Jepni nje vlere");
f.focus();
return false;
}
if(isNaN(f.value)){
alert("Vlera qe dhate nuk eshte numer");
f.focus();
return false;
}
return true;
}
</script>
</head>
<body>
<div id="box1">
<form action="">
<p>Type a country or a currency</p>
<p> <label for="txtList" >
<input type="text" id="txtList1"
placeholder="United States Dollars (USD)" list="currencies"/>
<datalist id="currencies">
<option value="United States Dollars (USD)">
<option value="Euro(EUR)">
<option value="Albania (LEK)">
<option value="Paunds (PAUND)">
</datalist>
</label></input></p>
<nav>Browse All
<ul>
<li><a href = "#" >United States Dollars (USD)</a></li>
<li><a href = "#" >Euro(EUR)</a></li>
<li><a href = "#" >Albania (LEK)</a></li>
<li><a href = "#" >Paunds (PAUND)</a></li>
</ul>
</nav>
<p>Please enter an amount </p>
<p><label>Currency:
<input name = "name" type = "text" id="first" size = "15"
maxlength = "10">
</label></p></div>
<input type="button" value="=" onclick="convert()"/>
<div id="box2">
<p>Type a country or a currency</p>
<p> <label for="txtList" >
<input type="text" id="txtList2"
placeholder="Euro (EUR)" list="currencies"/>
<datalist id="currencies">
<option value="United States Dollars (USD)">
<option value="Euro(EUR)">
<option value="Albania (LEK)">
<option value="Paunds (PAUND)">
</datalist>
</label></input></p>
<nav>Browse All
<ul>
<li><a href = "#" >United States Dollars (USD)</a></li>
<li><a href = "#" >Euro(EUR)</a></li>
<li><a href = "#" >Albania (LEK)</a></li>
<li><a href = "#" >Paunds (PAUND)</a></li>
</ul>
</nav>
<p>Please enter an amount </p>
<p><label>Currency:
<input name = "name" type = "text" id="second" size = "15"
maxlength = "10">
</label></p></div></form>
</body>
</html>
活动:
<string name="myDateFormat"><xliff:g id="myDateFormat">%1$td/%1$tm/%1$tY</xliff:g></string>
这对于发布新Date Binding Library。
也很有用所以我可以在布局文件中使用这样的东西:
Log.d(TAG, "my custom date format: "+getString(R.string.myDateFormat, new Date()));
在java类中:
<TextView
android:id="@+id/text_release_date"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="1"
android:padding="2dp"
android:text="@{@string/myDateFormat(vm.releaseDate)}"
tools:text="0000"
/>
答案 20 :(得分:1)
要以毫秒为单位以区域设置格式获取日期或时间,我使用了这个:
Date date = new Date(milliseconds);
DateFormat dateFormat = DateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.SHORT, Locale.getDefault());
dateFormat.format(date);
Date date = new Date(milliseconds);
DateFormat dateFormat = DateFormat.getDateInstance(DateFormat.MEDIUM, Locale.getDefault());
dateFormat.format(date);
Date date = new Date(milliseconds);
DateFormat dateFormat = DateFormat.getTimeInstance(DateFormat.SHORT, Locale.getDefault());
dateFormat.format(date);
您可以使用其他日期样式和时间样式。有关样式here的更多信息。
答案 21 :(得分:1)
Java(和Android)中的Java.util.Date和.Calendar以及SimpleDateFormat非常麻烦。避免他们。它们太糟糕了,Sun / Oracle放弃了它们,用Java 8中的新java.time包取代它们(2014年不在Android中)。新java.time
的灵感来自Joda-Time库。
Joda-Time适用于Android。
搜索StackOverflow&#34; Joda&#34;找到很多例子和讨论。
使用Joda-Time 2.4的一小段源代码。
标准格式。
String output = DateTime.now().toString();
// Current date-time in user's default time zone with a String representation formatted to the ISO 8601 standard.
本地化格式。
String output = DateTimeFormat.forStyle( "FF" ).print( DateTime.now() );
// Full (long) format localized for this user's language and culture.
答案 22 :(得分:0)
为时已晚,但对某人有帮助
format
此处Post.where(date: 1.week.ago.beginning_of_day..Time.now)
是您需要的格式
前:&#34; HH:mm&#34;返回15:30
答案 23 :(得分:0)
日期格式类与作弊代码一起使用来确定日期。喜欢
您可以查看更多作弊here。
答案 24 :(得分:0)
android Time类提供了3种格式化方法http://developer.android.com/reference/android/text/format/Time.html
我就这样做了:
/**
* This method will format the data from the android Time class (eg. myTime.setToNow()) into the format
* Date: dd.mm.yy Time: hh.mm.ss
*/
private String formatTime(String time)
{
String fullTime= "";
String[] sa = new String[2];
if(time.length()>1)
{
Time t = new Time(Time.getCurrentTimezone());
t.parse(time);
// or t.setToNow();
String formattedTime = t.format("%d.%m.%Y %H.%M.%S");
int x = 0;
for(String s : formattedTime.split("\\s",2))
{
System.out.println("Value = " + s);
sa[x] = s;
x++;
}
fullTime = "Date: " + sa[0] + " Time: " + sa[1];
}
else{
fullTime = "No time data";
}
return fullTime;
}
我希望有用: - )