Java API date returned in odd format | dennisw | 2017-05-24 12:10 |
Status: Closed | ||
When making a Java API call to retrieve a dataset, I'm seeing dates returned in this format when using the standard call (as shown in Export > Java API): for (Map<String, Object> row : response.getRows()) { System.out.println(row); } ..... MMDT={"value":Wed May 23 00:00:00 EDT 2007} ..... In the study's datasets_metadata.xml, the column is defined as: <column columnName="MMDT"> <datatype>timestamp</datatype> <columnTitle>MMTT Date</columnTitle> <rangeURI>http://www.w3.org/2001/XMLSchema#dateTime</rangeURI> </column> Is there any reason it would be appearing in this format as opposed to an ISO format? |
||