W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
要分發(fā)或部署JavaFX應用程序,我們需要打包JavaFX應用程序類。
要處理應用程序打包和部署,我們可以使用JavaFX Packager工具來構(gòu)建,打包和部署應用程序。
以下步驟顯示如何使用JavaFX Packager工具。
轉(zhuǎn)到源文件夾如下
cd com/w3cschool
編譯源文件
javac -d . HelloWorldMain.java
運行javafxpackager命令
javafxpackager -createjar -appclass com.w3cschool.HelloWorldMain -srcdir . -outdir out -outfile helloworld.jar -v
-createjar
creates a JavaFX JAR executable application.-appclass com.w3cschool.HelloWorldMain
specifies the fully qualified name of the class containing the main() method.
-srcdir .
sets the top-level location of the parent directory holding the compiled classes (current directory).
-outdir out
sets the destination where the packaged jar file will be created.-outfile helloworld.jar
specifies the name of the executable jar file.-v
allows verbose displays logging information when executing javafxpackager.要在命令行上運行jar可執(zhí)行文件,請鍵入以下內(nèi)容并按Enter鍵:
javaw -jar out/helloworld.jar
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: