简体   繁体   中英

Is it possible to call NSIS script in java Swing Program

I have a java code in that i need to call NSIS script at run time, is it possible to call an NSIS script via java code at run time, if it possible kindly give an example..

Thanks in advance..

I don't think you can "call" NSIS from java.

The only option I see is, since you have command line options for NSIS, you can call the command line options from java using Runtime.exec()

Process child = Runtime.getRuntime().exec(your_NSIS_instructions);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM