We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
JSONWriter.Context context = JSONFactory.createWriteContext(); context.setDateFormat("yyyy-MM-dd"); LocalDateTime localDateTime = LocalDateTime.of(2014, 1, 2, 12, 13, 14); assertEquals("2014-01-02", JSON.toJSONString(localDateTime, context));