Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,我有格式中的字符串,但我希望字符串格式ss:mm:hh dd/mm/yyyy为例如格式。58:21:16 20/07/2012dd/mmm/yyyy hh:mm:ss19/Mar/2012 17:34:58
ss:mm:hh dd/mm/yyyy
58:21:16 20/07/2012
dd/mmm/yyyy hh:mm:ss
19/Mar/2012 17:34:58
但我得到的格式为20:040:2012 02:40:53.
20:040:2012 02:40:53
这里我传递的字符串是静态的。任何对此有任何想法的人都可以提供帮助。感谢任何形式的帮助。
使用大写 M 表示月份。
SimpleDateFormat sdf = new SimpleDateFormat("dd/MMM/yyyy hh:mm:ss"); textView.setText(sdf.format(new Date()));
M代表月,m代表分钟。
参考