- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
Date convertedDate = new Date();
SimpleDateFormat dateFormatter = new SimpleDateFormat("yyyy:MM:dd",
Locale.getDefault());
try {
convertedDate = dateFormatter.parse("" + year + ":" + month + ":"
+ day);
} catch (ParseException e) {
e.printStackTrace();
}
SimpleDateFormat fmtOut = new SimpleDateFormat("MM/dd/y");
String curDate = fmtOut.format(convertedDate).toString();
0rt 13.06.2014 18:25 # 0
Lure Of Chaos 14.06.2014 13:20 # +1
0rt 14.06.2014 13:30 # 0
bormand 14.06.2014 14:14 # 0
0rt 14.06.2014 14:39 # 0
bormand 14.06.2014 15:02 # 0
Он, емнип, deprecated. Надо через Calendar, если не туплю.
> инстансы проживут намного дольше, чем должны по видимой здесь логике
Экономия на спичках, имхо. Эта сотня байт на тред ни на что не повлияет.
Lure Of Chaos 14.06.2014 15:57 # 0
guest 14.06.2014 18:54 # 0
guest 14.06.2014 19:02 # 0