When we execute javafx:jlink, it will generate a compressed package named hellozip.zip
, the structure after decompression is roughly like this
The generated executable script is in
.\bin\hellofx
There is a detailed specification of the java main class (main function) to be run.
My question is, I have been searching for a long time in this zip package but I still can’t find the compiled class file. I want to know which directory in the zip package the compiled class file is in?
Use the following configuration:
When we execute javafx:jlink, it will generate a compressed package named hellozip.zip , the structure after decompression is roughly like this
The generated executable script is in .\bin\hellofx There is a detailed specification of the java main class (main function) to be run. My question is, I have been searching for a long time in this zip package but I still can’t find the compiled class file. I want to know which directory in the zip package the compiled class file is in?