Question

I want to parse Date from StringBuilder without conversion to String.

SimpleDataFormat.parse(String) implementation use only CharSequence methods, length() and charAt(), but defined as defined.

Is there simple (standard) way to do this, except copying the whole SimpleDateFormat class, for example?

Était-ce utile?

La solution

Seems there is DateTimeFormatter.parse(CharSequence) method in Java 8's java.time package. Overlooked it.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top