Xml2Json Converter Changelog

What's new in Xml2Json Converter 1.2.0

Nov 12, 2017
  • Fixes and new features:
  • Added support for batch converting via command line by pattern
  • Fixed issue when input file not exists
  • Fixed issue when output file must be placed into folder which haven't been created yet
  • Fixed issue with logging to /var/log/xml2json on linux and MacOS systems. Path changed to /tmp/log/xml2json
  • Added unit-tests
  • File's description:
  • xml2json-1.2.0-all.jar - application with all dependencies, choose this file if you have installed Java 1.8 on your PC.
  • xml2json-1.2.0-with_jre-windows.zip - archive with executable xml2json.exe file for Windows users, archive includes embedded JRE (Java Runtime Environment). Choose this archive if you do not have installed Java on you PC or you don't know what is JRE :) Most windows-users must use this archive.
  • xml2json-1.2.0-1.x86_64.rpm - RPM package for Linux-users
  • xml2json-1.2.0-with_jre-macosx.dmg - package for MAC-users.
  • Examples:
  • Convert list of JSON-files: java -jar xml2json-1.2.0-all.jar --noGui --sourceFolder=C:TempInput --destinationFolder=C:TempOutput --pattern=*.json
  • Convert list of XML-files: java -jar xml2json-1.2.0-all.jar --noGui --sourceFolder=C:TempInput --destinationFolder=C:TempOutput --pattern=*.xml
  • Convert only one file : java -jar xml2json-1.2.0-all.jar --noGui --sourceFolder=C:TempInput --destinationFolder=C:TempOutput --pattern=someFile.xml
  • To start Tool with GUI just run following command: java -jar xml2json-1.2.0-all.jar Note: When you are starting tool in command line mode it will use all free memory wich you have in your system, but if you need limit memory usage then you will need to add '-Xmx=512M' (max size is 512Mb) to your start command right after 'java': java -Xmx=512M -jar xml2json-1.2.0-all.jar --noGui --sourceFolder=C:TempInput --destinationFolder=C:TempOutput --pattern=someFile.xml
  • Requirements:
  • Java 1.8 update 40 or higher (64 bit)

New in Xml2Json Converter 1.1.0 (Aug 31, 2017)

  • Fixed issue with consumption huge amount of memory for converting big xml files to json
  • Added ability to cancel running process
  • Open new file dialog uses last used directory
  • Added logging all actions into .log file (windows - logs catalog inside applications directory; linux and macos - /var/log/xml2json/)
  • Fixed issue with resizing window
  • Added 'Donate' link