Here you can find the source of formattaData(long date)
public static String formattaData(long date)
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Date; public class Main { private final static SimpleDateFormat _data = new SimpleDateFormat("dd/MM/yyyy"); public static String formattaData(long date) { try {/*w w w . j a va2s . c o m*/ return _data.format(new Date(date)); } catch (Exception e) { } return ""; } }