Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Creating 32 bit JavaFx Native Bundle in 64 bit machine

I have my machine and IDE with following configuration

Product Version: NetBeans IDE 7.2 (Build 201207171143) Java: 1.7.0_07; Java HotSpot(TM) 64-Bit Server VM 23.3-b01 System: Windows 7 version 6.1 running on amd64; Cp1252; en_US (nb)

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

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.

like image 688
Neil Avatar asked Oct 18 '12 08:10

Neil


1 Answers

You can by using a 32bit JDK:

    <fx:platform basedir="C:\Program Files (x86)\Java\jdk1.8.0_121"/> 
like image 88
ZiglioUK Avatar answered Oct 15 '22 02:10

ZiglioUK