问题描述
我的机器和 IDE 具有以下配置
I have my machine and IDE with following configuration
产品版本:NetBeans IDE 7.2(内部版本 201207171143)Java:1.7.0_07;Java HotSpot(TM) 64 位服务器 VM 23.3-b01系统:在amd64上运行的Windows 7 6.1版;cp1252;en_US (nb)
Product Version: NetBeans IDE 7.2 (Build 201207171143)Java: 1.7.0_07; Java HotSpot(TM) 64-Bit Server VM 23.3-b01System: Windows 7 version 6.1 running on amd64; Cp1252; en_US (nb)
在构建过程中创建的 JavaFx 包 (.exe) 是 64 位的.我的用户在 32 位机器上,所以我需要在 32 位上创建包.有什么办法可以用我的机器创建 32 位 exe 文件
The JavaFx bundle (.exe) created during build is of 64 bit. My users are in 32 bit machine so I need to create bundles in 32 bit. Is there any way I can create 32 bit exe files using my machine
尝试下载 32 位 JDK 并在项目属性中指出相同的内容,但我不确定该 exe 是否在 32 位中创建,因为在任务管理器中,应用程序不知道它旁边的 *32.
Tried downloding 32 bit JDK and pointed the same in the project properties but i am not sure if the exe created in 32 bit or not because in task manager the application does not know *32 next to it.
推荐答案
您可以使用 32 位 JDK:
You can by using a 32bit JDK:
<fx:platform basedir="C:Program Files (x86)Javajdk1.8.0_121"/>
这篇关于在 64 位机器上创建 32 位 JavaFx Native Bundle的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!