How To Open Jar Files Windows 10

Active1 month ago

Running a .jar file in a command line works fine, but i am not able to run any .jar file by double clicking on my Windows 7 (64). It seems nothing happens after the double click.

I tried the ftype hint, no success:

  • A JAR file can also contain CLASS files (compiled Java code), audio files, image files and more. The JAR file can then be read and run as a single request by the Runtime Environment. JAR can be used for all sorts of purposes on desktop and mobile. For example, it could be a game, application theme, or browser add-on. How to Open JAR Files.
  • May 09, 2019  Basically you cannot set the required complex command to open.jar files by using “Open With” in Windows 10. So what will normally happen is that you’ll associate the.jar file to open with java.exe, you double-click on the executable.jar, and a command prompt window will open for a split second and close, and the program does not launch.
  • JAR file is a package containing Java application. You could execute it with Java Runtime, but you likely don't want that. Since Minecraft is Java application by itself, you should.somehow. put this file into your game' directory, and configure it to be executed.

I reinstalled the JDK 7 64-bit, no success.

Any idea?

How To Make .jar Files Open With Java Windows 10

5377037

Aug 26, 2015  Opening.Jar files by doubleclicking used to be a breeze, until I updated to Windows 10. Now when I double click a.jar file, it doesn't open. Yes these are the same exact files that worked on.

8,10112 gold badges33 silver badges66 bronze badges
codercoder
6632 gold badges8 silver badges11 bronze badges

19 Answers

What is listed in right-click-> Open With ?Is some other program listed as the default program ? Is a Java Runtime listed ? If a Java Runtime is listed, you can open with it, and make it the default program to run with.

ie,

Praveen Vinny
2,0336 gold badges27 silver badges39 bronze badges
stratwinestratwine
2,7312 gold badges22 silver badges32 bronze badges

If you have previously used the right click and opened with pathtoyourjavaw.exe then you will need to remove the following registry key.

[-HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerFileExts.jar]

Then run

AshUKAshUK

You may also run it from the Command Prompt (cmd):

Dariusz WoźniakDariusz Woźniak
6,0803 gold badges41 silver badges62 bronze badges

For Windows 7:

  1. Start 'Control Panel'
  2. Click 'Default Programs'
  3. Click 'Associate a file type or protocol with a specific program'
  4. Double click .jar
  5. Browse C:Program FilesJavajre7binjavaw.exe
  6. Click the button Open
  7. Click the button OK
Sk8erPeter
4,9489 gold badges39 silver badges64 bronze badges
unpopularunpopular

If you try unpopular's answer:

For Windows 7:

  1. Start 'Control Panel'
  2. Click 'Default Programs'
  3. Click 'Associate a file type or protocol with a specific program'
  4. Double click .jar
  5. Browse C:Program FilesJavajre7binjavaw.exe
  6. Click the button Open
  7. Click the button OK
Open

And jar files still fail to open (in my case it was like I never double clicked):
open the Command Prompt (to be safe with admin rights enabled) and type the following commands:

java -version This should return a version so you can safely assume java is installed.

Then run

java -jar 'PATHTOFILEFILENAME.JAR'

Read through the output generated. You may discover an error message.

Community
P.Brian.MackeyP.Brian.Mackey
25.5k51 gold badges191 silver badges293 bronze badges

I had the same problem with .jar files not opening on a double click. It turned out that I had two versions of Java installed (Java 6 and 7). Uninstalling Java 6 from Control Panel-> Uninstall a Program was what finally allowed .jar files to open on a double click without using the command window.

RachaelRachael

I tried all above steps to resolve the problem but nothing worked. I had installed both JDK and JRE.

In my case, one jar file was being opened by double click while other was not being opened. I examined those files and the probable reason was that which was being opened, was created using JAVA SE 6 and the one not being opened was created using JAVA SE 7. Although, the problematic jar file was being run via command prompt (java -jar myfile.jar).

I tried Right Click -> Properties -> Change to javaw.exe with both in JDKbin directory and JREbin directory.

I was finally able to fix the problem by changing javaw.exe path (from JDKbin to JREbin) in registry editor.

Go to HKEY_CLASSES_ROOTjarfileshellopencommand, the value was,

I changed it to,

and it worked. Now the jar file can be opened by double click.

ePanditePandit
1,6911 gold badge16 silver badges12 bronze badges

check out this link http://ostermiller.org/opening_jar_files.htmlprobably you haven't installed runtime or your system doesn't open .jar files with JAVA

mas-designsmas-designs

I had the problem that windows was blocking it from running (Windows 10 Pro). Right click icon> properties> in the bottom right corner it might tell you 'Windows has blocked the functionality........' next to it there is a check box labeled 'Unblock'> uncheck the box> apply> option to block goes away and then you can run it.

CodeMonkeyCodeMonkey

change the default application for JAR files from java.exe to javaw.exe from your JAVA_HOME/bin folder.

This is because, java.exe is console application only, but JAR file needs a window rendered execution. Since javaw.exe is a window application, it is preferred for the execution of JAR files.

An alternative to this is that to some extent you can use command prompt to run your JAR files by simply using java keyword with -jar attrib.

Rishav SharanRishav Sharan
2691 gold badge4 silver badges18 bronze badges

This is my way:

  1. Create file bat (example openJar.bat).

  2. Cut it and paste to C:Program FilesJavabin (this step is unnecessary, but you should it).

  3. Right click jar file > Properties > Choose open with (Change button ) and select your file bat.
  4. Double click your jar file to test it.

How To Execute Jar Files In Windows 10

Stephen Rauch
33.3k15 gold badges45 silver badges70 bronze badges
HongarcOpenHongarc
2,7092 gold badges11 silver badges27 bronze badges

How To Open Jar Files

  1. Assuming you've loaded the Java JRE and/or Java SDK, then
  2. To do associations, go to 'My Computer', click on one of your drives (C: for instance).
  3. When it is shown, choose 'Tools' »» 'Folder options' (or Properties... it's in different places depending on the Windows version).
  4. Open Windows Explorer (just open any folder) to get the 'Tools' -> 'Folder options' window.
  5. When you get the 'Folder options' window, click on the tab 'File types'. You should be able to either edit or add JAR files (.jar extension)
  6. Change the program used to open JAR files. In the file select window, go to the folder where the JRE is installed (should be C:/Program Files/Java/..., mark 'Always open with', and select the javaw.exe file.
Sk8erPeter
4,9489 gold badges39 silver badges64 bronze badges
paulsm4paulsm4
84.3k10 gold badges112 silver badges138 bronze badges

Installing the newest JRE fixed this for me.

(Even though I had a JDK and JRE(s) installed before.)

Aaron ThomaAaron Thoma

Your problem might also be inside your Java code setting, I mean, if your program somehow could not realize the main class/main file (entry point), it will not launch the the program/.jar (specially application built on IDE's). To solve that on an IDE :

  • Right Click the project > Properties > Run > Browse Main Class > OK.
  • Clean and Rebuild

Try running it now. Hope it helps

mustangDCmustangDC

It's not a file association problem since you can launch the application correctly through command line.

The problem is when you double click on an associated file the application starts and runs with the file's path as base execution path. Any relative path will be computed from the file path and everything you try to load will probably be missing.

Nothing happens, even if you surround all of your entry point code with try/catch(Exception) because java s throwing Throwables and not Exceptions: to fix this in your java entry point surround the content of the main method with a try/catch(Throwable) (base class for Exception and Error) and debug.

Mauro SampietroMauro Sampietro

I created a project, JAR_Runnr, for precisely this. =)

BoyBlueSkyBoyBlueSky

Had to try this:

  1. Open command prompt as admin
  2. Move to the file folder using cd command
  3. Type java.exe -jar *filename*.jar
  4. Press enter

The app should pop right after that.

The Humble AngyThe Humble Angy
Can

I had this same issue, and searched the internet for a solution and none of the suggestions didn’t not open by double clicking the .jar file.

In my case the reason is I have multiple JDK & JRE versions installed on my computer. Since I am a software developer working with several different versions for different clients I need to use multiple JDKs in my PC (Windows 10 Pro). So I do not want to change the system variables (i.e. JAVA_HOME, JRE_HOME or PATH), instead I use command prompt to run java in user process whenever I wanted to use a different version.

When installing JDK it registers the .jar file association with latest version we installed in the PC. If you right click on the .jar icon and select properties, it will show that file opens with “Java(TM) Platform SE Binary”. If we look at the registry key: HKEY_CLASSES_ROOTjarfileshellopencommand, it will point to latest JDK version.

It is not a good idea (sometimes annoying) to change the registry key every time I want to run an app build from a different version.

So in my situation it is impossible to just double click the .jar file to execute it. But instead I found a work around solution myself.

Scenario:

Multiple JDKs (1.7, 1.8, 9.0, 10.0, 11.0, and 12.0)are installed in the PC, so the latest installed was 12.0.

Problem

Want to double click an executable .jar developed using JDK 1.8 and didn’t work

This is my work around solution:

  1. Create a shortcut for the .jar file that you want to open.
  2. Right click the shortcut icon and select properties -> Shortcut tab
  3. Change the text in the target (for example 'D:DevJavaApp1.8.jar') To

    'C:Program FilesJavajdk1.8.0binjavaw.exe' -jar 'D:DevJavaApp1.8.jar'

  4. Then click ok Double click the shortcut.

It should now open the app.

DushDush

I had the same issue: if I doubleclick on a jar executable file, and my Java application does not start.

So tried to change manually also registry key, but it didn't help me. Tried to reinstall JDK newer/older without any result. (I have several versions of Java)

And I've solved it only using jarfix program. Jarfix automatically fixed .jar association problem on Windows system. (check regedit: PCHKEY_CLASSES_ROOTjarfileshellopencommand)

What says Johann Nepomuk Löfflmann:

The root cause for the problem above is, that a program has stolen the .jar association. If you have installed the Java Runtime Environment the first time, the file type called 'jar' is assigned to javaw.exe correctly. 'jar' is an abbreviation for 'java archive' and javaw.exe is the correct program to execute a .jar. However, on Windows any program can steal a file type at any time even if it is already associated with a program. Many zip/unzip programs prefer to do this, because a jar is stored in the .zip format. If you doubleclick on a .jar, your pack program opens the file, rather than javaw runs the program, because your pack program ignores the meta information which are also stored in a .jar. In the Oracle bug database there is the low-priority report 4912211 'add mechanism to restore hijacked .jar and .jnlp file extensions', but it has been closed as 'Closed, Will Not Fix'.

You may also miss the file connection with .jar if you are using a free OpenJDK without an installer.

Notice:my OS is Windows 10, but logic is the same for 7, 8 and so on.

Helpful links:
https://windowsreport.com/jar-files-not-opening-windows-10/https://johann.loefflmann.net/en/software/jarfix/index.html

invzbl3invzbl3
6402 gold badges8 silver badges25 bronze badges

protected by CommunityApr 1 '13 at 16:44

Thank you for your interest in this question. Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?

Not the answer you're looking for? Browse other questions tagged javawindows-7jar or ask your own question.