문제

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?

도움이 되었습니까?

해결책

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top