Jdk 6u45 Windows X64
I like to be sure that everything will work just by copying the contents of the Java folder and setting the environment variables.
I usually run the installer in a virtual machine, zip the java folder contents, go back to a snapshot of the virtual machine, and then unzip the compressed file.
Java jdk 6u45 Windows x64. File size 61,4 MB. Java jdk 6u45 Linux i586. File size 70,1 MB.
Java SE 6 Downloads. Go to the Oracle Java Archive page. Thank you for downloading this release of the Java TM Platform, Standard Edition Development Kit (JDK TM).The JDK is a development environment for building applications, applets, and components using the Java programming language. To install Java on Windows 64-bit select jdk-XuYY-windows-x64.exe (e.g. How to Check if 32 or 64 Bit Windows. If unsure whether you are running 32-bit or 64-bit Windows use the System option in Windows to find the System type: Windows 10 - Select Settings then System. Select About and read the System type line.
I couldn't find a place where the latest JRE / JDK is available as a zip file..
Alternately, is it safe to assume that exe installer from sun just will just unzip the whole thing, without messing around with the registry, environment variables, etc..?
- Jdk 8u65 windows x64 exe free download - MSI nVidia-based Graphics Drivers (Windows 2000/XP), Get Your Windows Product Key Software, Is File 32-bit or 64-bit Software, and many more programs.
- The Java Development Kit contains the software and tools needed to compile, debug, and run applications that you've written using Java. Java Development Kit (64-Bit).
- It worked for the 64-bit version on Windows 7 on the jdk-8u31-windows-x64. – digfish Jan 29 '15 at 11:23 This answer allowed me to unpack JDK 8 – user1445967 Jun 5 '15 at 19:46 @MarcT running java -version still points to the old jdk.
- It worked for the 64-bit version on Windows 7 on the jdk-8u31-windows-x64. – digfish Jan 29 '15 at 11:23 This answer allowed me to unpack JDK 8 – user1445967 Jun 5 '15 at 19:46 @MarcT running java -version still points to the old jdk.
Related: Installing Java manually on Windows?
--After all this time I found this site that seems to be exactly what I was looking for (2018-05-22)
closed as off-topic by Mogsdad, Erik A, TylerH, Paul Roub, MachavityNov 14 '17 at 20:24
This question appears to be off-topic. The users who voted to close gave this specific reason:
- 'Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.' – Mogsdad, Erik A, TylerH, Paul Roub, Machavity
30 Answers
You can download a Java Portable from PortableApps.com. It will not change your system settings. You can put it on your USB stick.
UPD: for those who needs JDK there's an open-source project OpenJDK Portable
peterhJDK is not available as a portable ZIP file, unfortunately. However, you can follow these steps:
- Create working JDK directory (
C:JDK
in this case) - Download latest version of JDK from Oracle (for example
jdk-7u7-windows-x64.exe
) - Download and install 7-Zip (or download 7-Zip portable version if you are not administrator)
- With 7-Zip extract all the files from
jdk-XuXX-windows-x64.exe
into the directoryC:JDK
- Execute the following commands in
cmd.exe
:cd C:JDK.rsrc1033JAVA_CAB10
extrac32 111
- Unpack
C:JDK.rsrc1033JAVA_CAB10tools.zip
with 7-zip - Execute the following commands in
cmd.exe
:cd C:JDK.rsrc1033JAVA_CAB10tools
for /r %x in (*.pack) do .binunpack200 -r '%x' '%~dx%~px%~nx.jar'
(this will convert all.pack
files into.jar
files)
- Copy all contents of
C:JDK.rsrc1033JAVA_CAB10tools
where you want your JDK to be - Setup
JAVA_HOME
andPATH
manually to point to your JDK dir and its BIN subdirectory.
Jdk-6u45-windows-x64
IgorIgor- Create destination folder where you can RWX (e.g.
C:jdk8
) - Download jdk exe from Oracle (e.g.
jdk-8u72-windows-x64.exe
) - Unzip the
tools.zip
found inside it into the destination folder - In
cmd.exe
, run:cd C:jdk8
for /r %x in (*.pack) do .binunpack200 -r '%x' '%~dx%~px%~nx.jar'
This solution works for JDK 8 too, without Admin rights.
dARKpRINCEFor JDK 8u102 things have changed, this worked for me:
- Download windows JDK exe
- Open with 7-Zip
- Dump contents into a directory %JDK-EXE%
- cmd: cd %JDK-EXE%.rsrc1033JAVA_CAB10
- cmd: extrac32 111
- Now have a tools.zip in directory, open it in 7-Zip
- Extract contents into a new directory %JDK-VERSION%
- cmd: cd %JDK-VERSION%
- cmd: for /r %x in (*.pack) do .binunpack200 -r '%x' '%~dx%~px%~nx.jar'
- src.zip is in %JDK-EXE%.rsrc1033JAVA_CAB9110 - put a copy into %JDK-VERSION%
Now you are ready to go.You might want to setup JAVA_HOME and PATH to point to your %JDK-VERSION% dir and its BIN subdir.
Here is a good, but a little complex, way:
Stage 1: MSI & CAB from native installation file
Download the JRE or JDK from the Oracle (Sun) website. This method will work on any version and on SDK or JRE.
Run and wait for the installer to load. Minimize the window.
In Windows 7, you should browse to this location:
C:Users YOUR_USER_NAME AppDataLocalLowSunJava
There, you will have a few MSI and CAB files.
Stage 2: easily extract the MSI & CAB using uniextract
Browse to Universal Extractor LegRoom.net and download UniExtract Binary Archive.
Use WinRar or any un-RAR program available to you, and extract uniextract161_noinst.rar anywhere.
Stage 3: finally, extract the inner container named core.zip
Drag & drop jdk1.6.0_31.msi or jre1.6.0_31.msi on the icon of UniExtract.exe.
Select 'Extract Method: MSI Administrative Installer'. Wait for the process to finish.
Enter the new created folder.
If you've drag-and-dropped jre1.6.0_31.msi you should have a jre1.6.0_31 folder
Follow all levels inside and you'll see core.zip.
This is what you are after. You can just unzip it anywhere and you'll have the content of the Java runtime or SDK without installing anything on your system.
* You can now close the installer of Java you've left opened in stage 1 *
Cheran ShunmugavelThe answer has been given before. It works for 'jdk-8u91-windows-x64.exe' also
- Unzip with 7-zip, so we get tools.zip
Unzip tools.zip to a folder folder_name so we get the contents in the picture
In cmd move to the folder folder_name/bin and run the command
java -version
the output will be
this indicates that there is something messing. Actually we need to unpack all packages.
In cmd move to the folder folder_name and automatically do the unpacking by executing the command
for /r %x in (*.pack) do .binunpack200 -r '%x' '%~dx%~px%~nx.jar'
Do step 3 again, if you get the output bellow, then the JDK is ready to use.
This is how I do it,
Start with the exe installation and wait for the below screen,
Go to the C:Program Files (x86)Java
and copy your JDK to another place.
Cancel the installation by clicking 'x' and uninstall JDK.
Copy the copied JDK back into C:Program Files (x86)Java
or other folder of your choice
- Download jdk from Oracle website: http://www.oracle.com/technetwork/java/javase/downloads/index.html
- Unzip the exe. For example: jdk-8u5-windows-x64.exe
- Unzip the following file: tools.zip (found under the unzipped folder) to the desired JAVA_HOME.
- Update the JAVA_HOME environment variable to point to your desired path.
Tested for version: jdk-7u60-windows-x64.exe, jdk-7u60-windows-x64.exe
- Download jdk from Oracle website: http://www.oracle.com/technetwork/java/javaee/downloads/index.html
- Unzip the exe. For example: jdk-7u55-windows-x64.exe
- Unzip the following file: ProductPackagesjdk.zip (found under the unzipped folder) to the desired JAVA_HOME.
- Update the JAVA_HOME environment variable to point to your desired path.
Tested for version: jdk-7u55-windows-x64.exe
Alin StoianAlin StoianThere is a .tar.gz file of the Java Runtime Environment (JRE) on the Oracle website for these operations systems: Windows x86, Windows x64, Linux x86, Linux x64, Mac OS X x64, Solaris x64.See: http://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-2133155.html
Also there is the Java Development Kit (JDK): http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html.The Windows .tar.gz. is missing, but you can just extract the .exe file with a tool like 7zip.
I found this is very useful to make Eclipse portable. ;-)
K BK BYou can download a portable Zulu .zip archive from Azul Systems, which are builds of OpenJDK for Windows, Linux (RHEL, SUSE, Debian, Ubuntu, CentOS) and Mac OS X.
Zulu is a certified build of OpenJDK that is fully compliant with the Java SE standard. Zulu is 100% open source and freely downloadable. Now Java developers, system administrators and end users can enjoy the full benefits of open source Java with deployment flexibility and control over upgrade timing.
More technical information on different JVMs (including Zulu) with their architectures and OS support here.
VoicuVoicuThe widely-upvoted answer is fine, I've used it for quite some time in the form of this bat file:
It requires access on the path to 7zip, and must be run in a folder alongside the JDK of your choice (it'll find it because of the *.exe up here).
Works on 8u144, and I guess it worked from the 8u20 thing.
try this:http://maven.nuiton.org/nexus/content/repositories/jvm/com/oracle/jre/
this link contains portable zip distributions for all versions.
swapyonubuntuswapyonubuntuHere is a link for JDK 5 zip file.sun-jdk-5-win32-x86-1.5.0.12.zip
Download the Processing application from http://www.processing.org/download/. The zip file contains a folder called java. It includes the JDK 1.6.0_32 (version checked on 19/02/2013).
Kramer earthquake engineering pdf. Retrieved 21 January 2010.
Oliver KocsisOliver KocsisThe Sun JVM is available as a MSI which is executable from a script.
Thorbjørn Ravn AndersenThorbjørn Ravn AndersenTested with jdk-8u74-macosx-x64.dmg
.
- Download from Oracle the
.dmg
- Mount the disk image
- Extract the
.pkg
, dragging it. Do not double-click (it will install). - Open a terminal and
cd
into the package. mkdir jdk-$version && cd jdk-$version
xar -xf ./JDK*.pkg
cd jdk
TABtar zxf Payload
- The
Contents/Home
folder contains the JDK
JDK's can be downloaded from here as zip file nor .exehttp://installbuilder.bitrock.com/java/
supernovasupernovaThanks for asking; the JDK does not seem to interact with the Windows registry.
However, the JRE does in certain instances.
Link: http://www.rgagnon.com/javadetails/java-0604.html
iokevinsiokevinsThe Process described by Igor and CharlesB Works to me, since IDE's like NetBeans and Eclipse permit specify the location of the JDK, even software like Apache Tomcat (the ZIP Distribution) use BASH - FILES to set it up (then specify the JDK location using relatives URI).
I Have a USB-HardDisk With NetBeans, Eclipse, Apache Tomcat working with a JDK in 'portable mode'.
I Had a way to extract a copy of the JDK from the installers files: Install it, Copy it in other place and then uninstall it. A dirty way to extract it, but was successfull.
The place to put EXTRA - LIBS was: %PLACE_WHERE_JDK_ARE%jrelibext
You can just use 7zip (or another similar app) to get the dirs inside the core.zip file that's bundled in the installer.Just use 7zip to browse the exe, you'll see a core.zip file which has all the files that usually go inside 'jreX' dir (where X is the major version number).As for setting env variables and the such, you can follow the other answers. If all you want is a portable jre (for example, you can run your jars by using java.exe jarfile or javaw.exe jarfile) then this solution will do.This is very similar to copying the jre dir from one place to another
This link
helps you at least avoid the obnoxious preload installer getting straight to the SDK.
From there, I would install this in a throw-away VM, on your old crufty PC or elsewhere, then transfer the resulting
(or similar) to your new machine, set the very few usual ENV variables, and there you ideally go, w/o all the marketing junk and potential tie-ins. Of course, also w/o the security from frequent automatic updates.
I discovered you can run the installer in Wine. This works:
WINEPREFIX=/home/jason/java wine jre-7u11-windows-i586.exe
Then once it is finished you can just zip up the /home/jason/java/drive_c/Program Files (x86)/Java/jre7/
This should work for jdk as well
JulesYou can download SEVER JRE it contains jdk. server jre 7
- Download server-jre-< version>.tar.gz file for windows system.
- If you have 7zip tar file can be extracted by that, I used cygwin(cygwin can be installed without admin rights see this answer) to extract tar file with command
tar xzvf file.tar.gz
any other tar extractor will also work
Now extracted JDK folder will be created in same folder.
Jre-6u45-windows-x64.exe
I did copy the JRE folder several times and it always works fine. But I am really not sure if you can just get a zip file with its contents, as the official installation install the plugins for IE, Firefox and whatsoever.
Ravi WallauRavi WallauYou can get jre-7u75-windows-i586.zip from the link above.
Commands from tips below wrapped as batch script. Save this as unpack.bat. Then place it to dir with jdk/jre extracted files.
I installed JDK 8 with the exe installer and then uninstalled JRE, I now have JDK folder with no env variable or other setting changed.
Here's where. Download the .gz package.
Not the answer you're looking for? Browse other questions tagged javainstallation or ask your own question.
Download Oracle Java JRE & JDK using a script |
Oracle has recently disallowed direct downloads of java from their servers (without going through the browser and agreeing to their terms, which you can look at here: http://www.oracle.com/technetwork/java/javase/terms/license/index.html). So, if you try: |
wget 'http://download.oracle.com/otn-pub/java/jdk/7u4-b20/jdk-7u4-linux-x64.tar.gz' |
you will receive a page with 'In order to download products from Oracle Technology Network you must agree to the OTN license terms' error message. |
This can be rather troublesome for setting up servers with automated scripts. |
Luckily, it seems that a single cookie is all that is needed to bypass this (you still have to agree to the terms to install): |
Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie |
So, if you want to download jdk7u4 for 64-bit Linux (e.g., Ubuntu) using wget, you can use: |
wget --no-cookies --no-check-certificate --header 'Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie' 'http://download.oracle.com/otn-pub/java/jdk/7u4-b20/jdk-7u4-linux-x64.tar.gz' |
Just for reference, here are the links to the current (at the time of posting) downloads of JDK and JRE |
UPDATE: instead of having new post for each JDK/JRE update I'll just keep updating this one |
UPDATE 2: Seems that you now need the --no-check-certificate flag for wget or you'll get a 'cannot verify edelivery.oracle.com's certificate' error. |
UPDATE 3: Starting with 7u51 they changed the cookie name, it's now 'oraclelicense', thank you Yngve for posting in the comments - I updated the commands to include both cookies. |
JDK 7u51 |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/jdk-7u51-linux-arm-vfp-hflt.tar.gz |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/jdk-7u51-linux-arm-vfp-sflt.tar.gz |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/jdk-7u51-linux-i586.rpm |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/jdk-7u51-linux-i586.tar.gz |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/jdk-7u51-linux-x64.rpm |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/jdk-7u51-linux-x64.tar.gz |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/jdk-7u51-macosx-x64.dmg |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/jdk-7u51-solaris-i586.tar.Z |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/jdk-7u51-solaris-i586.tar.gz |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/jdk-7u51-solaris-x64.tar.Z |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/jdk-7u51-solaris-x64.tar.gz |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/jdk-7u51-solaris-sparc.tar.Z |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/jdk-7u51-solaris-sparc.tar.gz |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/jdk-7u51-solaris-sparcv9.tar.Z |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/jdk-7u51-solaris-sparcv9.tar.gz |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/jdk-7u51-windows-i586.exe |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/jdk-7u51-windows-x64.exe |
JDK 6u45 |
http://download.oracle.com/otn-pub/java/jdk/6u45-b06/jdk-6u45-linux-i586-rpm.bin |
http://download.oracle.com/otn-pub/java/jdk/6u45-b06/jdk-6u45-linux-i586.bin |
http://download.oracle.com/otn-pub/java/jdk/6u45-b06/jdk-6u45-linux-x64-rpm.bin |
http://download.oracle.com/otn-pub/java/jdk/6u45-b06/jdk-6u45-linux-x64.bin |
http://download.oracle.com/otn-pub/java/jdk/6u45-b06/jdk-6u45-solaris-i586.sh |
http://download.oracle.com/otn-pub/java/jdk/6u45-b06/jdk-6u45-solaris-i586.tar.Z |
http://download.oracle.com/otn-pub/java/jdk/6u45-b06/jdk-6u45-solaris-sparc.sh |
http://download.oracle.com/otn-pub/java/jdk/6u45-b06/jdk-6u45-solaris-sparc.tar.Z |
http://download.oracle.com/otn-pub/java/jdk/6u45-b06/jdk-6u45-solaris-sparcv9.sh |
http://download.oracle.com/otn-pub/java/jdk/6u45-b06/jdk-6u45-solaris-sparcv9.tar.Z |
http://download.oracle.com/otn-pub/java/jdk/6u45-b06/jdk-6u45-solaris-x64.sh |
http://download.oracle.com/otn-pub/java/jdk/6u45-b06/jdk-6u45-solaris-x64.tar.Z |
http://download.oracle.com/otn-pub/java/jdk/6u45-b06/jdk-6u45-windows-i586.exe |
http://download.oracle.com/otn-pub/java/jdk/6u45-b06/jdk-6u45-windows-x64.exe |
http://download.oracle.com/otn-pub/java/jdk/6u45-b06/jdk-6u45-linux-ia64-rpm.bin |
http://download.oracle.com/otn-pub/java/jdk/6u45-b06/jdk-6u45-linux-ia64.bin |
http://download.oracle.com/otn-pub/java/jdk/6u45-b06/jdk-6u45-windows-ia64.exe |
JRE 7u51 |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/jre-7u51-linux-i586.rpm |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/jre-7u51-linux-i586.tar.gz |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/jre-7u51-linux-x64.rpm |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/jre-7u51-linux-x64.tar.gz |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/jre-7u51-macosx-x64.dmg |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/jre-7u51-macosx-x64.tar.gz |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/jre-7u51-solaris-i586.tar.gz |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/jre-7u51-solaris-x64.tar.gz |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/jre-7u51-solaris-sparc.tar.gz |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/jre-7u51-solaris-sparcv9.tar.gz |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/jre-7u51-windows-i586-iftw.exe |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/jre-7u51-windows-i586.exe |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/jre-7u51-windows-i586.tar.gz |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/jre-7u51-windows-x64.exe |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/jre-7u51-windows-x64.tar.gz |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/server-jre-7u51-linux-x64.tar.gz |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/server-jre-7u51-solaris-i586.tar.gz |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/server-jre-7u51-solaris-x64.tar.gz |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/server-jre-7u51-solaris-sparc.tar.gz |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/server-jre-7u51-solaris-sparcv9.tar.gz |
http://download.oracle.com/otn-pub/java/jdk/7u51-b13/server-jre-7u51-windows-x64.tar.gz |
JRE 6u45 |
http://download.oracle.com/otn-pub/java/jdk/6u45-b06/jre-6u45-linux-i586-rpm.bin |
http://download.oracle.com/otn-pub/java/jdk/6u45-b06/jre-6u45-linux-i586.bin |
http://download.oracle.com/otn-pub/java/jdk/6u45-b06/jre-6u45-linux-x64-rpm.bin |
http://download.oracle.com/otn-pub/java/jdk/6u45-b06/jre-6u45-linux-x64.bin |
http://download.oracle.com/otn-pub/java/jdk/6u45-b06/jre-6u45-solaris-i586.sh |
http://download.oracle.com/otn-pub/java/jdk/6u45-b06/jre-6u45-solaris-sparc.sh |
http://download.oracle.com/otn-pub/java/jdk/6u45-b06/jre-6u45-solaris-sparcv9.sh |
http://download.oracle.com/otn-pub/java/jdk/6u45-b06/jre-6u45-solaris-x64.sh |
http://download.oracle.com/otn-pub/java/jdk/6u45-b06/jre-6u45-windows-i586-iftw.exe |
http://download.oracle.com/otn-pub/java/jdk/6u45-b06/jre-6u45-windows-i586.exe |
http://download.oracle.com/otn-pub/java/jdk/6u45-b06/jre-6u45-windows-x64.exe |
http://download.oracle.com/otn-pub/java/jdk/6u45-b06/jre-6u45-linux-ia64-rpm.bin |
http://download.oracle.com/otn-pub/java/jdk/6u45-b06/jre-6u45-linux-ia64.bin |
http://download.oracle.com/otn-pub/java/jdk/6u45-b06/jre-6u45-windows-ia64.exe |
Jdk 6u45 Windows X64
commented Jul 16, 2017
won't work anymore due to Oracle's new AUTH :.( |