stephenn
08-30-2002, 10:52 AM
Hi
Java JDK and JSE are development kit?
or different.
pls let me know.
thanks
Java JDK and JSE are development kit?
or different.
pls let me know.
thanks
![]() | View Full Version : regarding Java JDK and JSE stephenn 08-30-2002, 10:52 AM Hi Java JDK and JSE are development kit? or different. pls let me know. thanks allera 08-30-2002, 11:34 AM You can get the SDK (devel kit) of the JSE (standard edition) of Java. You can alternatively get the JRE (runtime edition I think?) of the JSE. Try: http://java.sun.com http://java.sun.com/j2se/1.4/download.html Hope that helps, at least a little. :) stephenn 08-30-2002, 11:54 AM Thanks for your info am I interpreting correctly? so JDK is included in SDK? JRE also provide development kit? thansk ckpeter 08-30-2002, 03:23 PM Some simple definitions - JDK - Java Development Kit. SDK - Software Development Kit, usually used in conjuntion with the word Java, e.g. "Java SDK" JRE - Java Runtime Environment. SE - Standard Edition; what you usually run on the desktop and sometimes on the server. EE - Enterprise Edition, standard edition plus some more enterprise features. If you just want to run Java program, get the JRE. If you want to develop java programs, get the JDK, which is JRE plus developmental tools. Peter stephenn 08-30-2002, 06:11 PM Does SDK comes with JDK? What i mean is, if I have software develepment kit for JAVA eg (SDK) do I need to dowload JDK? from my understaning SDK run top of JDK right? thanks stephenn 08-30-2002, 06:13 PM What I want to run is tomcat for my webserver? what do I need? thanks ckpeter 08-30-2002, 06:13 PM SDK just means Software Development kit, whether it is Java SDK or Windows SDK. JDK (Java Development Kit) == Java SDK. Peter ckpeter 08-30-2002, 06:15 PM Just download the JDK 1.4 and you should be fine. It may also be called Java SDK 1.4, etc... Unless you need the Enterprise features, you don't need the EE (enterprise edition). Peter stephenn 08-30-2002, 07:00 PM i have download sdk for java and this is the issue now [root@localhost Software]# ./j2sdk-1_4_0-forte_ce-4-bin-linux.bin* [root@localhost Software]# ./j2sdk-1_4_0-forte_ce-4-bin-linux.bin* -is /dev/hda6 InstallShield Wizard Initializing InstallShield Wizard... Preparing Java(tm) Virtual Machine... ................................... ................................... ................................... ................................... ................................... ................................... ...Error writing file = There may not be enough temporary disk space. Try using -is:tempdir to use a temporary directory on a partition with more disk space. I did df -k and got [root@localhost Software]# df -k Filesystem 1K-blocks Used Available Use% Mounted on /dev/hda1 1714416 1591380 35948 98% / none 63408 0 63408 0% /dev/shm /dev/hda6 1153332 239640 913692 21% /home How could I use /dev/hda6 partion now? ckpeter 08-30-2002, 07:03 PM Your / partition is almost full, which explains the error. Try freeing up some diskspace. You shouldn't install it under /home. Peter Haley 08-30-2002, 11:40 PM Try freeing the partition and install JDK1.4 on the server. JRE is meant for runtime environment of Java. |