After a quick research, I found the following three libraries for parsing Toml files in java. toml4j tomlj jackson-dataformats-text
What I am looking for is a library that can parse toml files without a corresponding POJO class. While both toml4j
, and tomlj
can achieve that, they do not seem to be maintained.
jackson-dataformats-text
on the other is actively maintained but I can not parse a toml file without the corresponding POJO class.
Is there a way to create a dynamic class in java that I can use to parse any toml file?