Reputation: 7004
My aim is to get a date in the format '{current year}-01-01 00:00:00' i.e. only the value for year changes with time. What is the best way to do that.
Using
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-01-01 00:00:00");
String format = simpleDateFormat.format(new Date());
doesnt seem clean enough.What other options do I have?
Upvotes: 2
Views: 8150
Reputation: 10273
You can just do:
Calendar today = Calendar.getInstance()
String date = today.get(Calendar.YEAR) + "-01-01 00:00:00"
Upvotes: 0
Reputation: 591
Try using a Calendar like this:
new GregorianCalendar(Locale.CANADA).get(Calendar.YEAR);
Upvotes: 1
Reputation: 57346
You can do something like
Calendar cal = Calendar.getInstance();
cal.set(2011,1,1,0,0,0);
Then you can change the year of this object with
cal.set(Calendar.YEAR, [your-int-year]);
And print it in any way you want.
Upvotes: 0
Reputation: 38345
You can use a Calendar
object with the following code:
Calendar cal = Calendar.getInstance();
cal.clear();
cal.set(Calendar.YEAR, year);
Upvotes: 4