Description: By default this package installs JDK according to your platform (x86 or x64).
To force x86 (32bit) installation on 64 bit systems
```
choco install jdk8 --x86
```
or
```
choco install jdk8 --forcex86
```
Note that params "i586=true" and "x64=false" are deprecated.
if you install by
```
choco install jdk8 -params "both=true"
```
then
Both 32bits and 64bits JDK will be installed and 64bits will be defaults.
By default this package installs JDK with source codes(zip).
If you don't want to install source codes
```
choco install jdk8 -params "source=false"
```
If you want auto update
```
choco install jdk8 -params "static=false"
```
If you want to specfiy install directory (you need \\\\ for escape)
```
choco install jdk8 -params 'installdir=c:\\java8'
```
Description: NetBeans is an integrated development environment for programming in Java and many other languages.
This package corresponds to the complete bundle, which includes this languages :
- Java SE
- Java EE
- HTML5/JavaScript
- PHP
- C/C++
And it install GlassFish Server runtimes.
