B4J Question JShell

PatrikCavina

Active Member
Licensed User
Hi,
i want to execute launch4j by shell to create .exe file, using Jshell library.
I tried different ways but don't work.

Someone can tell me where i'm wrong?

B4X:
    Dim args As List
    args.Initialize
    args.Add("buildX.xml")
    Dim shell As Shell
    shell.Initialize("createExe","C:\Users\kdrills01\Desktop\c\Objects\launch4jc.exe",args)
    shell.WorkingDirectory = "C:\Users\kdrills01\Desktop\c\Objects\"
    shell.Run(-1)
 

PatrikCavina

Active Member
Licensed User
I understood my mistake, using stdErr I noticed that when I performed the program, the bin folder was rewritten without programs used by Launch4J.
Thank you Erel
 
Upvote 0
Top