B4J Library simple config converter class

Unfortunately, Windows and Linux work with different configuration files.
Therefore, I have written a simple class for converting the most common formats.

Formats: INI, MAP, CSV, JSON, XML, YAML

B4X:
Dim Config As cConfigConverter
Config.Initialize
'convert xml to csv
Config.read_XML( "YourPath", "YourFile.xml" )
Config.write_CSV( "YourPath", "YourFile.csv" )
 

Attachments

  • cConfigConverter.bas
    11.4 KB · Views: 253
Top