I have created a batch file which executes a jar file with a properties file:
@echo off REM Windows bat script java -Xmx256M -Djava.util.logging.config.file=log.properties -jar Archive.jar
I would like to create a Java application that includes a code that execute this batch file (feasible) but without showing the DOS window of the executing process. Also, when the application ends the process of this process should terminate too. Is this feasible? Thanks in advance!