Batch script starting javafx bundled application shows no output -
i have simple batch script file line:
echo "welcome script" start "title of program" /wait /b "c:\program files (x86)\path_to_my_program\myprogram.exe" %1 %2 %3 %4 %5
the script receives several arguments (up five) , passes them application. application actions on params , stores them in file.
everything working well, except output in application made system.out.println()
not shown in windows command dock. application self-packaged javafx bundle. please advice appreciated.
p.s. can see output produced script (echo
). can't see output within application neither form stdout neither logback.
Comments
Post a Comment