class Date{ public: int dd,mm,yy; Date(int dd1,int mm1, int yy1){ dd = dd1; mm = mm1; yy = yy1; } string getDate(){ string date = tostring(dd)+"/"+tostring(mm)+"/"+tostring(yy); return date; } }; code example
Example 1: date to string java
Date date = Calendar.getInstance().getTime();
DateFormat dateFormat = new SimpleDateFormat("yyyy-mm-dd hh:mm:ss");
String strDate = dateFormat.format(date);
Example 2: java date to string
Format formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String s = formatter.format(date);