Here you can find the source of convertDateToBulgarianFormat(Date date)
public static String convertDateToBulgarianFormat(Date date) throws ParseException
//package com.java2s; //License from project: Apache License import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; public class Main { private static final SimpleDateFormat dateFormatBulgarian = new SimpleDateFormat("dd.MM.yyyy"); public static String convertDateToBulgarianFormat(Date date) throws ParseException { String dateInBulgarianFormat = dateFormatBulgarian.format(date); return dateInBulgarianFormat; }//from w w w . ja v a 2s .com }