Java tutorial
//package com.java2s; //License from project: Open Source License import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String formatDateFromString(String input) { Date date = new Date(); SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); try { date = sdf.parse(input); } catch (ParseException e) { e.printStackTrace(); } sdf = new SimpleDateFormat("dd/MM/yyyy"); String result = sdf.format(date); return result; } }