python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Java 8 Time API - DB2/400 / JT400
I'm currently upgrading an application that uses DB2/400 database, and I'm migrating to the new java time api (LocalDate, LocalTime, ...), using the latest version of jt400.jar.
However, when executin...
areal
Votes: 0
Answers: 1
How do I format am-pm-of-day to be "AM/PM" rather than "a.m./p.m."?
DateTimeFormatter's API reference seems to miss details for formatting am-pm-of-day properly, I could always use String.replace() but I feel like it makes more sense to have an option change a.m. to A...

imashnake_
Votes: 0
Answers: 1
String of type mm:ss:SSS to LocalTime Kotlin/Java
I have a time string 03:02:111 which is of pattern mm:ss:SSS. I would like to transform this into a LocalTime object.
mm -> minutes
ss -> seconds
SSS -> mills
Simple example:
val time = "...

kaulex
Votes: 0
Answers: 1
can't convert String to MMM/dd/yyy format in java
I try to convert an input type String into LocalDate with format "MMM/dd/yyyy", but when I enter input, it throws an exception:
Exception in thread "main" java.time.format.DateTim...
Hoàng Huy
Votes: 0
Answers: 1