Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Malcolm Mutambanengwe
4,205 Pointssetting formatted date
import java.util.Date;
public class Movie {
private String mTitle;
private Date mReleaseDate;
public String getTitle() {
return mTitle;
}
public void setTitle(String title) {
mTitle = title;
}
public Date getReleaseDate() {
return mReleaseDate;
}
public void setReleaseDate(Date date) {
mReleaseDate = date;
}
public String getFormattedReleaseDate(ReleaseDate) {
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");
return SimpleDateFormat;
}
}
1 Answer

Steve Hunter
57,682 PointsHi,
You want to call the format
method on the new formatter
instance and pass in mReleaseDate
as the parameter. Use dot notation for the method call; formatter.format();
and put the date that is already declared in the brackets. That will return a formatted string to the call; return that straight out of your method:
public String getFormattedReleaseDate(){
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");
return formatter.format(mReleaseDate);
}
Make sense?
Steve.