Java String to Date stringToDate(String fecha, String formato)

Here you can find the source of stringToDate(String fecha, String formato)

Description

string To Date

License

Apache License

Declaration

public static Date stringToDate(String fecha, String formato) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

import java.text.ParseException;
import java.text.SimpleDateFormat;

import java.util.Date;

import java.util.GregorianCalendar;

public class Main {
    public static Date stringToDate(String fecha, String formato) {
        fecha = nullToBlank(fecha);//from w  w  w .  j  a v a2s .c  o  m
        GregorianCalendar gc = new GregorianCalendar();
        SimpleDateFormat df = new SimpleDateFormat(formato);
        try {
            gc.setTime(df.parse(fecha));
            return gc.getTime();
        } catch (ParseException e) {
            System.out.println("Error con fecha: " + e.getMessage());
            return null;
        }
    }

    /**
     * retorna una cadena vacia en caso de ser null
     */
    public static String nullToBlank(Object texto) {
        try {
            if (texto == null) {
                return "";
            }
            if (texto.toString().trim().equals("null")) {
                return "";
            }
            return texto.toString().trim();
        } catch (Exception e) {
            return "";
        }

    }
}

Related

  1. stringToDate(String dateString, String formatStr)
  2. stringToDate(String dateString, String pattern)
  3. stringToDate(String dateText, String format, boolean lenient)
  4. StringToDate(String Expression)
  5. StringToDate(String fecha)
  6. StringToDate(String format, String dateStr)
  7. stringToDate(String input)
  8. stringToDate(String pstrValue, String pstrDateFormat)
  9. stringToDate(String s)