Here you can find the source of dateToString(Date d)
public static String dateToString(Date d)
//package com.java2s; /******************************************************************************* * Copyright (c) 2013 Dominik Halfkann, Michael Backhaus, Benjamin Kramer, * Fabian K?nig, Karl Stelzner, Stefan Noll and Alexander Schieweck. * All rights reserved. This program and the accompanying materials * are made available under the terms of the GNU Public License v3.0 * which accompanies this distribution, and is available at * http://www.gnu.org/licenses/gpl.html//from w w w . j ava 2 s . co m ******************************************************************************/ import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; public class Main { private static Calendar c1 = Calendar.getInstance(); public static String dateToString(Date d) { c1.setTime(d); Date date = c1.getTime(); String strDate = ""; SimpleDateFormat sdf = new SimpleDateFormat("dd.MM.yyyy"); strDate = sdf.format(date); return strDate; } }