hjson-java icon indicating copy to clipboard operation
hjson-java copied to clipboard

Hjson for Java

Results 8 hjson-java issues
Sort by recently updated
recently updated
newest added

I was working on another project using Hjson-java and realized it was missing a few things I needed. Namely, the ability to retain comments (my project uses them very liberally),...

Looks like the default distribution of Travis-CI no longer supports `oraclejdk7` as well as `oraclejdk8`. There is no specific distribution specified in the file `.travis.yml`. Relevant articles on Travis-CI: -...

Otherwise `JsonValue.valueOf( Math.log(-1)).toString();` will throw up a `NumberFormatException` like a drunken sailor, because inside `JsonNumber.toString()` the called function `BigDecimal.valueOf()` doesn't really like non-finite values.

Can someone please explain this: "A lightweight writing buffer to reduce the amount of write operations to be performed on the underlying writer. This implementation is not thread-safe. It deliberately...

I notice a lot's of class have been extended from JsonValue, such as JsonString, JsonNumber. I am wondering why could not support getUnwrapped() value from the JsonValue. which, returns java.lang.Object....

Got wrong number when serialize a long number. Here is a example: ```java String in = "{ \"id\" : 8093873769532439696 }"; String out = JsonValue.readHjson(in).toString(Stringify.HJSON) ``` Got ``` { id:...

Hi, hjson-js can modify and keep whitespace & comments. Is it possible to add this feature to json-java? Thanks

help wanted