When I try to call a java program from my batch script like that:
java -jar %PATH_TO_BATIK%batik-rasterizer.jar -w 72 -h 72 -dpi 240 -d %2%\hdpi -m %MIME_TYPE% %1%
The command fails. When I echo the above command the following gets printed to the screen:
echo java -jar %PATH_TO_BATIK%batik-rasterizer.jar -w 72 -h 72 -dpi 240 -d testMIME_TYPE1
where %2% is test and %1% is book.svg.
How do I format the command so that it works?