我想找一个看起来像这种格式的日期:2014年1月23日
这就是我目前所拥有的:
String testDate = test.getDate();
SimpleDateFormat dateFormat = new SimpleDateFormat("dd/MM/yyyy");
Date convertedDate = new Date();
try {
convertedDate = dateFormat.parse(testDate);
} catch (ParseException e) {
e.printStackTrace();
}
Log.i("DATE", convertedDate + "");
我的输出是:Mon Jul 07 09:40:54 GMT 2014?
答案 0 :(得分:0)
试试这个,
import android.text.format.DateFormat;
String dateString = (String) DateFormat.format("dd-MM-yyyy",new java.util.Date());
使用简单的Toast消息进行检查。
Toast.makeText(getActivity(),dateString,Toast.LENGTH_SHORT).show();