Difference between revisions of "Package:Java SE Development Kit (JDK)"

From Funtoo
Jump to navigation Jump to search
m (vincent said accepting licenses isn't necessary....)
m (eselect garbage)
Line 8: Line 8:
Jdk is {{package|dev-java/oracle-jre-bin}} & additional software for java development.
Jdk is {{package|dev-java/oracle-jre-bin}} & additional software for java development.


== Installation ==
=== Installation ===
{{console|body=
{{console|body=
###i## emerge dev-java/oracle-jdk-bin
###i## emerge dev-java/oracle-jdk-bin
}}
}}


== Runtime ==
=== Configuration ===
==== JVM ====
list java virtual machines:
{{console|body=
###i## eselect java-vm list
}}
 
set java virual machine os oracle jdk:
{{console|body=
###i## eselect java-vm set system oracle-jdk-bin-1.8
}}
 
==== Browser Plugin ====
list java browser plugins:
{{console|body=
###i## eselect java-nsplugin list
}}
 
set java browser plugin to oracle jdk:
 
===== 32bit =====
{{console|body=
###i## eselect java-nsplugin set 32bit oracle-jdk-bin-1.8
}}
 
===== 64bit =====
{{console|body=
###i## eselect java-nsplugin set 64bit oracle-jdk-bin-1.8
}}
 
=== Runtime ===
After the installation finishes, you may want to check and see if you can use the jre components of jdk. You can do so by issuing the following command:
After the installation finishes, you may want to check and see if you can use the jre components of jdk. You can do so by issuing the following command:



Revision as of 12:29, January 30, 2015

Java SE Development Kit (JDK)

   Tip

We welcome improvements to this page. To edit this page, Create a Funtoo account. Then log in and then click here to edit this page. See our editing guidelines to becoming a wiki-editing pro.


Jdk is dev-java/oracle-jre-bin & additional software for java development.

Installation

root # emerge dev-java/oracle-jdk-bin

Configuration

JVM

list java virtual machines:

root # eselect java-vm list

set java virual machine os oracle jdk:

root # eselect java-vm set system oracle-jdk-bin-1.8

Browser Plugin

list java browser plugins:

root # eselect java-nsplugin list

set java browser plugin to oracle jdk:

32bit
root # eselect java-nsplugin set 32bit oracle-jdk-bin-1.8
64bit
root # eselect java-nsplugin set 64bit oracle-jdk-bin-1.8

Runtime

After the installation finishes, you may want to check and see if you can use the jre components of jdk. You can do so by issuing the following command:

user $ java -jar file.jar

media