Convertir una fecha tipo String a Date en java
Estoy tratando de convertir un String a Date en java y me da el siguiente error "is not a known variable in the current context."
Mi código es el siguiente:
SimpleDateFormat formatoDelTexto = new SimpleDateFormat("yyyy-MM-dd");
String str = "2010-02-01";
Date fecha = null;
try {
fecha = formatoDelTexto.parse(str);
} catch (ParseException ex) {
Logger.getLogger(PanelCotizacion.class.getName()).log(Level.SEVERE, null, ex);
}
Si alguien me puede ayudar me sacará de un apuro.
1 Respuesta
Respuesta de Stanimir Iankov Stantchev
1