Artykuły
Ilość wyświetleń: 664 « powrót
public String currentDateStr()
{
String currDate;
DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
java.util.Date date = new java.util.Date();
currDate = dateFormat.format(date);
return (currDate);
}