Как запускать jar файлы на windows

An interesting side effect of this causes a problem when starting runnable jar files in the command prompt.

If you try (in a command prompt):

jarfile.jar parameter

No joy, because this is being translated to the following (which doesn’t work):

javaw.exe -jar jarfile.jar parameter

However, the following command does work:

java.exe -jar jarfile.jar parameter

If you change the association in file manager as described above to:

"C:\Program Files\Java\j2re1.4.2_04\bin\java.exe" -jar "%1" %*

Then you can type:

jarfile.jar parameter

in the command prompt and it will now work!

EDIT:(However you then get a black console window when you run a form based (non console) Java app, so this is not an ideal solution)

If you run these jar files by double clicking them in windows, no parameters will be passed so your Java code needs to handle the stack overflow exception and include a «press a key» function at the end or the window will just disappear.

In order to pass a parameter in windows you have to create a shortcut to the jar file, which includes the parameter in the target line (right click on the shortcut and select properties) you can not add parameters to the jar file icon itself in this way.

There isn’t a single, consistent solution here, but you would have the same problem with any other console application.

There is a windows freeware application called «bat to exe» which you can use to create an exe file from a .bat file with the apropriate command line in it. you can also embed the jar file in the exe with this application, and make it clean it up when it has finished running, so this may be a more elegant solution.


Загрузить PDF


Загрузить PDF

Из этой статьи вы узнаете, как открывать и запускать исполняемые JAR-файлы на компьютере под управлением Windows или Mac OS X. Файлы JAR (Java Archive) содержат данные, которые используются программами Java. Большинство JAR-файлов представляют собой библиотеки (хранилища данных), к которым обращаются разные программы, поэтому JAR-файлы запустить нельзя (если дважды щелкнуть по такому файлу, ничего не произойдет). Аналогично, большинство исполняемых JAR-файлов являются установочными файлами для установки приложений или программ. Если у вас не получается запустить JAR-файл, проверьте, совместим ли он с операционной системой.

  1. Изображение с названием Run a .Jar Java File Step 1

    1

    Установите Java на компьютере (если нужно). JAR-файлы нельзя запустить, если на компьютере нет Java. Перейдите на веб-сайт Java по адресу https://www.java.com/ru/download/ и нажмите «Загрузить Java бесплатно», а затем установите Java.

    • Возможно, придется перезагрузить компьютер.
  2. Изображение с названием Run a .Jar Java File Step 2

    2

    Дважды щелкните по JAR-файлу. Если он является исполняемым и на компьютере есть Java, файл должен открыться. Если он не открывается, перейдите к следующему шагу.

    • Возможно, откроется всплывающее окно с запросом, какую программу использовать, чтобы открыть файл. В этом случае нажмите «Java (TM)» > «ОК».
  3. Изображение с названием Run a .Jar Java File Step 3

    3

    Убедитесь, что JAR-файл является исполняемым файлом. Исполняемые JAR-файлы, предназначенные для установки программ, отличаются от библиотечных JAR-файлов, которые используются другими программами. У библиотечных JAR-файлов пользовательских интерфейсов нет (как у исполняемых JAR-файлов), поэтому такие файлы нельзя запустить.

    • Например, многие JAR-файлы, которые хранятся в папках с данными программ, не являются исполняемыми файлами.
    • Если вы скачали JAR-файл из интернета, убедитесь, что он совместим с Windows, а не с Mac OS X.
  4. Изображение с названием Run a .Jar Java File Step 4

    4

    Обновите Java. Если при двойном щелчке по JAR-файлу появляется сообщение об ошибке, обновите Java. Для этого:

    • откройте меню «Пуск»
      Windows Start

      ;

    • прокрутите вниз и щелкните по папке «Java»;
    • нажмите «Проверить наличие обновлений»;
    • нажмите «Обновить сейчас» на вкладке «Обновление».
  5. Изображение с названием Run a .Jar Java File Step 5

    5

    Еще раз дважды щелкните по JAR-файлу. Если файл опять не откроется, он не является исполняемым, то есть его нельзя запустить.

    Реклама

  1. Изображение с названием Run a .Jar Java File Step 6

    1

    Установите Java на компьютере (если нужно). JAR-файлы нельзя запустить, если на компьютере нет Java. Перейдите на веб-сайт Java по адресу https://www.java.com/ru/download/ и нажмите «Загрузить Java бесплатно», а затем установите Java.

    • Открывая файл, который не принадлежит компании Apple, нажмите «ОК» (в окне с предупреждением), откройте меню Apple, нажмите «Системные настройки» > «Безопасность и конфиденциальность», разблокируйте меню, нажмите «Все равно открыть» (рядом с именем файла), а затем нажмите «Открыть», когда появится запрос.
  2. Изображение с названием Run a .Jar Java File Step 7

    2

    Дважды щелкните по JAR-файлу. Если он является исполняемым и на компьютере есть Java, файл должен открыться. Если он не открывается, перейдите к следующему шагу.

  3. Изображение с названием Run a .Jar Java File Step 8

    3

    Убедитесь, что JAR-файл является исполняемым файлом. Исполняемые JAR-файлы, предназначенные для установки программ, отличаются от библиотечных JAR-файлов, которые используются другими программами. У библиотечных JAR-файлов пользовательских интерфейсов нет (как у исполняемых JAR-файлов), поэтому такие файлы нельзя запустить.

    • Например, многие JAR-файлы, которые хранятся в папках с данными программ, не являются исполняемыми файлами.
    • Если вы скачали JAR-файл из интернета, убедитесь, что он совместим с Mac OS X, а не с другой операционной системой.
  4. Изображение с названием Run a .Jar Java File Step 9

    4

    Обновите Java. Если при двойном щелчке по JAR-файлу появляется сообщение об ошибке, обновите Java. Для этого:

    • откройте меню «Apple»
      Mac Apple

      ;

    • нажмите «Системные настройки»;
    • нажмите «Java»;
    • перейдите на вкладку «Обновить»;
    • нажмите «Обновить сейчас».
  5. Изображение с названием Run a .Jar Java File Step 10

    5

    Еще раз дважды щелкните по JAR-файлу. Если файл опять не откроется, он не является исполняемым, то есть его нельзя запустить.

    Реклама

Советы

  • Java-программы должны работать на любой платформе. Если это не так, то либо код программы содержит ошибки, либо эта программа является узкоспециализированной, то есть требует наличия определенных системных ресурсов или программ.
  • JAR-файл может быть программой или библиотекой. Если он является библиотекой, в нем нет встроенного пользовательского интерфейса, поэтому запускать такой файл нет смысла.

Реклама

Предупреждения

  • Java более безопасный, чем большинство других языков программирования, но вредоносное программное обеспечение, написанное на Java, все еще существует. Будьте осторожны, когда запускаете JAR-файлы, скачанные из интернета.

Реклама

Об этой статье

Эту страницу просматривали 287 315 раз.

Была ли эта статья полезной?

An interesting side effect of this causes a problem when starting runnable jar files in the command prompt.

If you try (in a command prompt):

jarfile.jar parameter

No joy, because this is being translated to the following (which doesn’t work):

javaw.exe -jar jarfile.jar parameter

However, the following command does work:

java.exe -jar jarfile.jar parameter

If you change the association in file manager as described above to:

"C:\Program Files\Java\j2re1.4.2_04\bin\java.exe" -jar "%1" %*

Then you can type:

jarfile.jar parameter

in the command prompt and it will now work!

EDIT:(However you then get a black console window when you run a form based (non console) Java app, so this is not an ideal solution)

If you run these jar files by double clicking them in windows, no parameters will be passed so your Java code needs to handle the stack overflow exception and include a «press a key» function at the end or the window will just disappear.

In order to pass a parameter in windows you have to create a shortcut to the jar file, which includes the parameter in the target line (right click on the shortcut and select properties) you can not add parameters to the jar file icon itself in this way.

There isn’t a single, consistent solution here, but you would have the same problem with any other console application.

There is a windows freeware application called «bat to exe» which you can use to create an exe file from a .bat file with the apropriate command line in it. you can also embed the jar file in the exe with this application, and make it clean it up when it has finished running, so this may be a more elegant solution.

На чтение 4 мин. Просмотров 23.4k. Опубликовано

Файл Jar – это формат пакета архива Java, который может включать в себя программу Java. Хотя вы можете извлекать Jars с помощью программного обеспечения для архивирования, такого как 7zip, вы не можете запускать чистое приложение Java Jar, как это было бы с другими программами в Windows.

Поскольку это так, мы рассмотрим, как вы можете запустить чистый Jar-файл Java-приложения в Windows.

Содержание

  1. Как я могу запустить файл Jar в Windows 10?
  2. 1. Добавить Java в Windows
  3. 2. Откройте файл Jar с двоичным файлом Java (TM) Platform SE
  4. 3. Запустите файл Jar из командной строки Windows
  5. 4. Добавьте сторонний Jar Executor в Windows
  6. 5. Загрузите этот инструмент, мы настоятельно рекомендуем

Как я могу запустить файл Jar в Windows 10?

  1. Добавить Java в Windows
  2. Откройте Jar-файл с помощью бинарного файла Java (TM) Platform SE
  3. Запустите файл JAR из командной строки Windows
  4. Добавить сторонний Jar Executor в Windows
  5. Загрузите этот инструмент, мы настоятельно рекомендуем

1. Добавить Java в Windows

Главное, что вам нужно сделать заранее – это установить Java. Без этого Java-приложения не будут работать в Windows. Вот как вы можете установить или обновить Java в Windows 10:

  • Сначала откройте командную строку (Admin), нажав комбинацию клавиш Win + R и введя «cmd» в подсказке.
  • Затем введите «java -version» в командной строке и нажмите Enter. Затем он предоставит дополнительную информацию о вашей версии Java, как показано ниже.

  • Текущая версия Java – Версия 8, обновление 131 . Если у вас нет Java или самой последней версии, вы можете добавить Версию 8 в Windows, нажав кнопку Бесплатная загрузка Java на этой странице веб-сайта.
  • Запустите мастер установки Java ниже, чтобы добавить Java 8 в Windows. Затем откройте браузер и убедитесь, что Java работает.

Подробнее о том, как добавить последнюю версию Java в Windows 10, читайте в этой обновленной статье.

2. Откройте файл Jar с двоичным файлом Java (TM) Platform SE

  • В последней версии Java теперь вы можете запускать файлы Jar. Откройте проводник и папку с файлом, который вам нужен для запуска.
  • Вы должны щелкнуть правой кнопкой мыши файл Jar и выбрать Открыть с помощью в контекстном меню.
  • Нажмите Выберите другое приложение , а затем выберите, чтобы открыть его с помощью бинарного файла Java (TM) Platform SE .

  • Установите флажок Всегда использовать это приложение, чтобы открывать файлы Jar .
  • Нажмите кнопку ОК , чтобы закрыть меню.
  • Теперь вы можете запустить выбранный Jar, и все другие файлы Jar также будут связаны с Java.

Epic guide alert! Больше нет проблем с Проводником. Исправьте их все с помощью этого обширного руководства!

3. Запустите файл Jar из командной строки Windows

  • Кроме того, вы можете запустить Jar из командной строки. Нажмите клавишу Win + горячую клавишу X и выберите Командная строка (Администратор) , чтобы открыть ее как администратор.
  • Затем введите java j -jar c: pathtojarfile.jar ’в CP и нажмите Enter. Замените c: pathtojarfile.jar на фактический путь и заголовок файла Jar, который вам нужно запустить в Windows.

  • Кроме того, вы можете сначала открыть папку с Jar в командной строке, введя «cd /», а затем каталог. Затем вы можете ввести «java -jar file.jar» без указания пути к папке.

Это откроет исполняемый файл Jar, если он содержит файл манифеста для указания точки входа приложения. (Разработчики должны были уже включить это в архив.)

Если вы разрабатываете свои собственные программы на Java, вам необходимо преобразовать Jar в исполняемый формат.

Если у вас возникли проблемы с доступом к командной строке от имени администратора, вам лучше ознакомиться с этим руководством.

4. Добавьте сторонний Jar Executor в Windows

Существуют также программы-исполнители для Windows, которые позволяют запускать файлы Jar так же, как и любые другие программы. Jarx – один из исполнителей Jar, который вы можете добавить в Windows, нажав Jarx-1.2-installer.exe на этой странице.

Нажмите на файл jarx.exe, чтобы запустить программное обеспечение, которое на самом деле не имеет графического интерфейса пользователя (кроме окна About jarx). Затем вы можете дважды щелкнуть Jar-файлы, чтобы запустить их в Windows.

Если у вас возникли проблемы с доступом к файлу JAR или у вас возникла какая-то ошибка, взгляните на это изящное руководство, чтобы найти отличные исправления.

5. Загрузите этот инструмент, мы настоятельно рекомендуем

Вы можете открывать файлы .jar и другие сотни различных форматов с помощью одного приложения. FileViewer Plus – это универсальный просмотрщик файлов для Windows, который может открывать и отображать более 300 различных типов файлов.

Новая обновленная версия имеет множество функций, которые сэкономят вам много времени при открытии, просмотре или редактировании файлов.Существует бесплатная полнофункциональная пробная версия, которую можно загрузить, так что вы можете проверить ее самостоятельно.

  • Загрузить сейчас FileViewer Plus 3

При этом теперь вы можете запускать файлы Jar в Windows. Если вам нужно исправить файл Jar, который не открывается, ознакомьтесь с этим руководством по Windows Report.

Если у вас есть другие предложения или вопросы, оставьте их в разделе комментариев ниже, и мы обязательно их рассмотрим.

by Matthew Adams

Matthew is a freelancer who has produced a variety of articles on various topics related to technology. His main focus is the Windows OS and all the things… read more


Updated on

  • To run a JAR file on your Windows 10 device, you certainly need to have Jave installed.
  • You’ll find below a path to the latest Java version in case you need it.
  • Then, you can find JAR file openers or executors, and we recommend some. 
  • Using Command Prompt is also a handy solution if you don’t want to install third-party tools.

run a Jar file on Windows 10 PC

A JAR file is a Java archive package format that might include a Java program within it.

While you can extract JARs with archiving software, you can’t run a pure Java JAR app as you would with other programs in Windows.

Since that’s the case, we’ll cover how you can run a pure Java app JAR file in Windows.

What are JAR files?

A JAR file allows Java runtimes to enclose an entire application, together with its classes and resources, in a single source.

Moreover, the elements inside a JAR file can be compressed, and that translates to shorter download times but also less space allocated on your drive.

In other words, JARs are more sophisticated archives that work in a Java environment on your PC.

How can I run a JAR file?

In this article

  • What are JAR files?
  • How can I run a JAR file?
  • 1. Add Java to Windows
  • 2. Use Java (TM) Platform SE binary
  • 3. Download a JAR file opener
  • 4. Run a JAR file in cmd
  • 5. Add a third-party JAR executor to Windows
  • How to get a JAR file for your favorite app?

1. Add Java to Windows

  1. Type cmd in the Windows Search tab and click on the Command Prompt app.
  2. Next, input the following command and press Enter to run it: java -version
  3. The current version of Java is Version 8 Update 311.
  4. If you don’t have Java or the most up-to-date version, you can download it for free. After you get the file, hit the Install button.
  5. Run through the Java setup wizard and close the window after the installation process.
  6. Then, open your browser to verify that the program is working.

The crucial thing you need upfront is to have Java installed. It helps you open JAR files. Without it, Java apps aren’t going to run in Windows.

How we test, review and rate?

We have worked for the past 6 months on building a new review system on how we produce content. Using it, we have subsequently redone most of our articles to provide actual hands-on expertise on the guides we made.

For more details you can read how we test, review, and rate at WindowsReport.

2. Use Java (TM) Platform SE binary

  1. Press the Windows key + E to start File Explorer and the folder that includes the file you need to run.
  2. You should right-click the JAR file and select Open with from the context menu, then select Choose another app.
  3. Sselect to open it with Java(TM) Platform SE binary.
  4. Click the Always use this app to open JAR files check box, then press the OK button to close the menu.
  5. Now you can run the selected JAR, and all other JARfiles will also be associated with Java.

3. Download a JAR file opener

  1. Go to the File Viewer Plus website and click on the Download Now button.
  2. After you download and install the app, hit the Finish button.
  3. Now click on the Open a file button or just drag-and-drop the JAR file in its window.
  4. You will instantly see the contents of the JAR file and you will be able to click the Extract All button to get them on a location on your drive.

You can open JAR files with a lot of apps out there but we strongly recommend File Viewer Plus because it can open and display over 300 different file types.

The new updated version has a plethora of features that will save you big time on opening, viewing, or editing files.

Keep in mind that the app supports the most popular text, audio, or video file type, as well as archive, source code, or web files.

Another popular JAR file opener is JAR Runner, by KIllerApplets.com. You can check it out if you prefer.

4. Run a JAR file in cmd

1. Input cmd in the Search tab.

2. Select Run as administrator to run Command Prompt with full privileges.

search for cmd

3. Then input the following command (replacing pathtofile from the example with the actual path of the file you need to run): java -jar c:\pathtojarfile.jar

command to open jar file

4. Press Enter.

5. That will open the executable JAR file so long as it contains a manifest file to specify the application’s entry point (the developers should have already included that in the archive.)

If you develop your own Java programs, you’ll need to convert the JAR to an executable format.

Another easy option is to run a JAR file in cmd, your PC’s built-in command-line tool. All you need to do is input a command while running the app with admin rights, and the file will be opened.

The command-lie app is crucial for debugging and installing apps but if it doesn’t work, learn how you can fix Command Prompt in Windows.

5. Add a third-party JAR executor to Windows

  1. Visit the JARX website and click on the Jarx-1.2-installer.exe file to download it.
  2. Download and click on the file to start the installation, then select the Close button when it’s finished.
  3. Now you can just double-click any JAR file to start it like a normal executable file. The JAR file will be executed.

There are also executor programs for Windows like JARX that enable you to run .JAR files the same as any other program.

Read more about this topic

  • What is Microsoft Coffee and is it real or not?
  • Security Settings Blocked Self-signed Application [Fix]

How to get a JAR file for your favorite app?

There are lots of websites that offer free JAR versions of any application you can think of and we’re going to provide a simple example for Instagram.

  1. Go to a website that offers JAR file downloads like JAR Download. Proceed with caution because not all such websited offer clean content so you should double-check it with an antivirus and scan the files on arrival before using them.
  2. Click on the Java version of the app you’re looking for. In our case, the Instagram Java.
  3. Now hit the Download button and by using our guide above, you already know how to open the JAR and use the contents.

If you’re having trouble or you receive an error, learn what to do if you’re unable to access JarFile on Windows 10.

We hope that our guide helped you with all the information needed to run JAR files in Windows or even convert them if needed.

For any other issues, we also have another guide that will help you if JAR files are not opening on Windows 10.

If you have any other suggestions on how to run a JAR file, or questions about the topic, leave them in the comments section below and we’ll be sure to take a look.

newsletter icon

  • Как запускать dos игры на windows 10
  • Как запускать bash скрипты в windows
  • Как запускать apk на windows 10 без эмулятора
  • Как запускать android приложения на windows 11
  • Как запросить разрешение от trustedinstaller на удаление папки windows 10