Исполняемый файл linux java

How to convert «jar» to Linux executable file?

I know how to convert «jar» to windows executable file(.exe). But I want to know how to convert «jar» to Linux executable file(.?). I have searched google but didn’t get exact answer what i want, help to do this.

I know how to run «jar» file in Linux, But I need to convert it to (.sh) linux application file. Like (.exe) file in windows

Why not just use a script (.sh) that triggers the jar-file, if you have to mask the application? Why can’t you use the java -jar command anyway?

6 Answers 6

I want to know how to convert «jar» to Linux executable file(.?).

Linux does not have executable files the same way that Windows does. In Linux we have binaries and scripts. Scripts are ran with an interpreter; languages like Ruby and Python. Binaries are files of compiled code, they can be libraries or entire programs. Both binaries and scripts can be executable.

To make a program executable in Linux, type this into the command line.

Alternatively you can open file preferences and set executable in the permissions section.

Since Linux does not have .exe files or an analogue, we’ll have to work something else out. Linux and other Unix like Operating system have a shell called bash; often called the command line or terminal in reference to Linux and Mac. We want to create a file that can be run as our entire program, instead of having to call $ java -jar myProgram.jar . To tell bash to start a script environment for a file we use a hashbang. This is the first line of the file which instructs bash were to look for the interpreter to send the rest of the file to. For a bash script, like Batch Script on Windows, we would start the file with #!/bin/bash . The path after the #! (hashbang) tells bash were to look for the interpreter. For a .jar make the hashbang #!/usr/bin/java -jar and then cat the .jar to the file with the hashbang. This can be done all from the terminal in Linux.

Create a file with the java jar hashbang.

$ echo '#!/usr/bin/java -jar' > myBin 

We have written the hashbang as a string to the new file myBin.

Читайте также:  Linux калибровка батареи ноутбука

Write the jar to the file.

The >> appends the jar to the receiving file.

This will create a file that has the bash hashbang and the jar appended to it. Next set myBin to executable and try to run the program.

Источник

Как запустить jar в Linux

Java — это кроссплатформенный язык программирования, благодаря которому программы, написанные один раз, можно запускать в большинстве операционных систем: в Windows, Linux и даже MacOS. И всё это без каких-либо изменений.

Но программы, написанные на Java, распространяются в собственном формате .jar, и для их запуска необходимо специальное ПО — Java-машина. В этой небольшой статье мы рассмотрим, как запустить jar-файл в Linux.

Как запустить jar Linux

Как я уже сказал, для запуска jar-файлов нам необходимо, чтобы на компьютере была установлена Java-машина. Если вы не собираетесь ничего разрабатывать, вам будет достаточно Java Runtime Environment или JRE. Что касается версии, то, обычно, большинство программ работают с 7 или 8 версией. Если нужна только восьмая, то разработчики прямо об этом сообщают. Посмотреть версию Java и заодно убедиться, что она установлена в вашей системе, можно с помощью команды:

У меня установлена восьмая версия, с пакетом обновлений 171. Если вы получаете ошибку, что команда не найдена, то это значит, что вам нужно установить java. В Ubuntu OpenJDK JRE можно установить командой:

sudo apt install openjdk-8-jre

Если вы хотите скомпилировать пример из этой статьи, то вам понадобиться не JRE, а JDK, её можно установить командой:

sudo apt install openjdk-8-jdk-headless

Чтобы узнать, как установить Java в других дистрибутивах, смотрите статью по ссылке выше. Когда Java будет установлена, вы можете очень просто запустить любой jar-файл в Linux, передав путь к нему в качестве параметра Java-машине. Давайте для примера создадим небольшое приложение:

public class Main public static void main(String[] args) System.out.println(» Losst test app! «);
>
>

Затем скомпилируем наше приложение в jar-файл:

javac -d . Main.java
jar cvmf MANIFEST.MF main.jar Main.class

Теперь можно запустить наш jar-файл командой java с параметром -jar:

Таким образом вы можете запустить любой jar-файл, который собран для вашей версии Java. Но не очень удобно каждый раз открывать терминал и прописывать какую-либо команду. Хотелось бы запускать программу по щелчку мышки или как любую другую Linux-программу — по имени файла.

Если мы дадим программе право на выполнение:

Читайте также:  Линия nvr 128 linux superstorage

И попытаемся её запустить, то получим ошибку:

Чтобы её исправить, нам понадобиться пакет jarwrapper:

sudo apt install jarwrapper

Теперь можно запускать java в Linux по щелчку мыши или просто командой.

Выводы

В этой небольшой статье мы рассмотрели, как запустить jar Linux с помощью java-машины, а также как упростить команду запуска. Если у вас остались вопросы, спрашивайте в комментариях!

Обнаружили ошибку в тексте? Сообщите мне об этом. Выделите текст с ошибкой и нажмите Ctrl+Enter.

Источник

How can I make a .jar file executable?

I’m trying to run a jar application under Ubuntu, so I installed OpenJDK Java 7 Runtime, but when I open this application I got this message :

The file ‘/home/aimad/Programms/jMerise/JMerise.jar’ is not marked as executable. If this was downloaded or copied from an untrusted source, it may be dangerous to run. For more details, read about the executable bit.

5 Answers 5

You can always run a jar file by doing java -jar JMerise.jar .

However, to make the jar file itself executable, you need to set the executable bit, as the message hints. chmod +x /home/aimad/Programms/jMerise/JMerise.jar will accomplish this.

After that you can do ./JMerise.jar to run it.

man chmod will provide you with information about how chmod works.

Did this ever work? bash: ./bbb.jar: cannot execute binary file: Exec format error for file bbb.jar -> bbb.jar: Java archive data (JAR)

Right click on the file, click on properties, then go to the Permissions tab, and check the box that says «Allow executing this file as a program».

enter image description here

What about if I can’t check that box above, to «allow executing file as a program»? I do check it, but a moment later it automatically gets unchecked!

@user961627 You probably have the .jar file stored on a partition which doesn’t support the executable bit. See Can’t make a file executable for more details.

Since you run your jar application with java -jar application.jar then that means java is on your path. You need two simple things: 1) add an interpreter (which apparently is #!java -jar ) in the first line of your jar file jut like you do that with your shell scripts: echo ‘#!java -jar’ > app.jar cat application.jar >> app.jar mv app.jar application.jar

If you cat the contents of your jar file you’ll see it starts with ex.: #!java -jar PK ^lN BOOT-INF/PK . . 2) add execute attribute by chmod +x application.jar Now you are able to «self-run» it via ./application.jar .

Читайте также:  Linux узнать какие пакеты установлены

First you’ll need to make sure you have a suitable Java runtime environment on your system. Ubuntu has openjdk in the official repo which is 99.99% combatible with Oracle Java, to install it type:

sudo apt-get install openjdk-7-jre

Next create a file called java-jar-launcher.desktop in ~/.local/share/applications and put the following contents in it:

[Desktop Entry] Type=Application Name=Java Application Launcher Icon=java Exec=/usr/bin/java -jar %U Categories=Application;Java Terminal=False 

Next add the following line in ~/.local/share/applications/mimeapps.list :

Now you should be able to just double click jar files to launch them, if nothing happens then right click on a jar file, select properties then go to the «Open With» tab and there you should see «Java Application Launcher», select that.

This method is prefferable (IMHO) because this way you are not giving execute permissions to jar files which can be potentially dangerous. This method will only work in a graphical environment and needs the user to manually double click on the file.

If running a .jar file from the command line works ( java -jar myFile.jar ), but double-clicking it in the GUI does not, and if sudo chmod +x myFile.jar appears to succeed but you still can’t open with double-click, and if right-clicking the .jar file > Properties > Permissions > «Allow executing file as program» does not work (i.e., the checkbox switches back just after you click it), then probably the .jar file is on an NTFS file system, which does not allow execute permissions on a per-file basis. (You may have this problem if you dual-boot, for example, and have a shared NTFS partition between Ubuntu and Windows).

Creating a launcher (as @tusharkant15 describes) will work because behind the scenes you’re executing /usr/bin/java , not the .jar file itself. Moving the .jar file to some other file system that is not NTFS will also work.

You must log in to answer this question.

Linked

Hot Network Questions

Subscribe to RSS

To subscribe to this RSS feed, copy and paste this URL into your RSS reader.

Site design / logo © 2023 Stack Exchange Inc; user contributions licensed under CC BY-SA . rev 2023.7.13.43531

Ubuntu and the circle of friends logo are trade marks of Canonical Limited and are used under licence.

By clicking “Accept all cookies”, you agree Stack Exchange can store cookies on your device and disclose information in accordance with our Cookie Policy.

Источник

Оцените статью
Adblock
detector