why sun does not provide a J2SE wihout installer ?

Hi, I wonder why Sun does not provide a J2SE or J2EE without installer ?I have to use different version of the JDK and it is so useful to have a zipped J2SE without installer !Tkx
[207 byte] By [waltereo] at [2007-9-30 18:13:21]
# 1
You can do that. If you are on Windows you can also save the reg entry for Java and load it in the next machine. Some risk involved.
Martin3 at 2007-7-6 18:45:18 > top of Java-index,Administration Tools,Sun Connection...
# 2

But when you say you need to use different versions, what does that have to do with installation? That has more to do with environment variables. I do not recommend setting the environment variables via the OS especially Windows. I make command launchers and exe launchers with the specific version I want to run. A sophisticated one can use the Windows registry settings. For most I simply set the path for just a particular cmd launch.

Typical example

set JAVA_HOME=c:\j2sdk1.5

set PATH=%JAVA_HOME%\bin;%JAVA_HOME%\jre\bin;C:\apache\xml-batik\resources;./schemas/mathml2

set JMFHOME=C:\JMF2.0

set JARPATH=.;

set BATIKPATH=./lib

set Xj3DPATH=c:/Xj3d/x3d

set CLASSPATH=./classes;./lib/TR/MathML2/dtd/java;./lib/xalan.jar;./lib/js.jar;./lib/batik-all-1.5.1.jar;./lib/js.jar;

rem ;./lib/xercesImpl.jar;./lib/xml-apis.jar;./lib/xmlParserAPIs.jar

java -ms128m -mx256m -server -cp %CLASSPATH% com.neuralworks.physics.Academy

if ERRORLEVEL GOTO dopause

GOTO endit

dopause:

java -version

pause

endit:

in 'run Academy.cmd'

Martin3 at 2007-7-6 18:45:18 > top of Java-index,Administration Tools,Sun Connection...