Convert string date to long value : DateFormat « Development « Java Tutorial
import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static void main(String[] args) throws Exception { String today = "21/12/2007"; DateFormat formatter = new SimpleDateFormat("dd/MM/yyyy"); Da...