convert string to date in java code example

Example 1: string to date conversion java

import java.text.SimpleDateFormat;  
import java.util.Date;  
public class StringToDateExample1 {  
public static void main(String[] args)throws Exception {  
    String sDate1="31/12/1998";  
    Date date1=new SimpleDateFormat("dd/MM/yyyy").parse(sDate1);  
    System.out.println(sDate1+"\t"+date1);  
}  
}

Example 2: convert string into time in java

java.sql.Time timeValue = new java.sql.Time(formatter.parse(fajr_prayertime).getTime());