我有一个EditText上的点击事件,我正在显示日期拾取器对话框和显示所选择的日期在" mm, dd, yyyy"格式,即1932年6月26日。但是我需要将日期以不同的格式传递给服务器;我需要传递的格式是"1932-06-26"。下面是我的代码:
{
dateFormatter = new SimpleDateFormat("MMMM dd, yyyy", Locale.US);
birthDate = (EditText) findViewById(R.id.birthday);
birthDate.setInputType(InputType.TYPE_NULL);
setDateTimeField();
}
private void setDateTimeField() {
birthDate.setOnClickListener(this);
Calendar newCalendar = Calendar.getInstance();
birthDatePickerDialog = new DatePickerDialog(this, new DatePickerDialog.OnDateSetListener() {
public void onDateSet(DatePicker view, int year, int monthOfYear, int dayOfMonth) {
Calendar newDate = Calendar.getInstance();
newDate.set(year, monthOfYear, dayOfMonth);
birthDate.setText(dateFormatter.format(newDate.getTime()));
}
},newCalendar.get(Calendar.YEAR), newCalendar.get(Calendar.MONTH), newCalendar.get(Calendar.DAY_OF_MONTH));
}
为了以不同的格式存储日期,我采用以下方法:
birthDate = (EditText) findViewById(R.id.birthday);
SimpleDateFormat formatDate = new SimpleDateFormat("dd MMM yyyy",Locale.US);
String output = formatDate.format(birthDate.getText().toString());
Log.d(TAG,"FORMATED DATE IS ::::: " + output);
但是我得到一个java.lang。错误类:java.lang. class。字符串错误。
是否有可能以一种格式显示日期并将日期存储为不同的格式?
首先你必须将字符串解析为日期,然后你可以格式化它:
下面的代码应该可以工作了:
birthDate = (EditText) findViewById(R.id.birthday);
SimpleDateFormat formatDate1 = new SimpleDateFormat("MMMM dd,yyyy",Locale.US);
SimpleDateFormat formatDate = new SimpleDateFormat("yyyy-MM-dd",Locale.US);
String output = formatDate.format(formatDate1.parse(birthDate.getText().toString()));
试试这个
String tmpDate = "June 26, 1932" ;
String parsedDate = new SimpleDateFormat("yyyy-MM-dd").format(new SimpleDateFormat("MMMM dd, yyyy").parse(tmpDate));
Log.d(TAG,"FORMATED DATE IS ::::: " + parsedDate);
下面是我尝试过的最终答案,效果很好。我创建了一个函数并返回了我想要的最终输出。
private String formatDate() {
birthDate = (EditText) findViewById(R.id.birthday);
String outputFormat = null;
SimpleDateFormat formatDate = new SimpleDateFormat("yyyy-MM-dd",Locale.US);
String inputFormatStr = "MMMM dd, yyyy";
DateFormat inputDateFormat = new SimpleDateFormat(inputFormatStr,Locale.US);
Date inputDate = null;
try{
inputDate = inputDateFormat.parse(birthDate.getText().toString());
if(birthDate!=null){
outputFormat = formatDate.format(inputDate);
}
} catch (ParseException e) {
Log.e(TAG, "exception occurred with details: "+e.toString());
}
return outputFormat;
}