- Sun Java SE Runtime Environment 8 Build 221 Portable + x64
- jPortable64
- portable Java® runtime environment
- Description
- App Notes
- Support
- jPortable
- portable Java® runtime environment
- Description
- App Notes
- Support
- Делаем Java приложение независимым от установки JRE или переносным (portable)
- jPortable
- Review
- Free Download
- A useful tool that was especially designed to help you easily add the necessary Java Runtime Environment to your portable device
Sun Java SE Runtime Environment 8 Build 221 Portable + x64
Представленная разработка содержит внутри себя все самое необходимое для того, чтобы вы могли на своем компьютере нормально запускать и работать в дальнейшем с Java приложениями, вы также сможете загружать Java апплеты. Обратите внимание, что если у вас будет желание с помощью данного языка создать Явы приложение, то вам нужно отдельно загрузить JDK, найти можно на сайте разработчика, а пока рекомендую всем скачать Java SE с нашего проекта.
Я думаю не стоит рассказывать о том, что множество программ пишут на данном языке, поэтому запускать и корректно с ними работать у вас просто не получится, вообще для меня это дополнение как Flash плагин для браузера, в любом случае когда-нибудь пригодится и без него уже не представляю систему, поэтому естественно могу только рекомендовать воспользоваться Java SE.
Особо расписывать момент установки не имею смысла, из скриншотов вы сможете увидеть все, что вас ждет, если поставите галочку в самом начале напротив Change Folder, то сможете указать папку куда будет установлена Java SE, после сразу можете пользоваться приложениями на данном языке. В целом добавить к сказанному нечего, в полной новости рекомендую выбрать разработку конкретно под вашу систему.
Пользователь DoomStorm сделал онлайн портативную версию, просим вас протестировать на своих системах, если будут проблемы пишите
Java Portable Latest x86 Setup Extractor + Java Portable Latest x64 Setup Extractor
[/not-group]
—>
jPortable64
portable Java® runtime environment
Download from PortableApps.com
Version 8 Update 281 for Windows, Multilingual
76MB download / 184MB installed
Notes | Antivirus Scan | Details
This is an online installer that will download Java during setup
— Support PortableApps.com’s development and hosting
Description
jPortable64 allows you to easily add a 64-bit Java® runtime environment to your portable device. No Java® runtime environment needs to be installed on the local machine and no admin rights are required. JARs can be run using our jPortable Launcher.
App Notes
Installation Note: Unlike standard portable apps which are installed to X:\PortableApps\AppNamePortable, jPortable is an add-on and is meant to be installed to X:\PortableApps\CommonFiles\Java64. This 64-bit version of jPortable can only be used by apps specifically written to use it. No officially released apps utilize it yet, only certain development test apps.
License Change 2019-04-10: The terms under which this version of the software is licensed have changed. This version of the Java Runtime is licensed only for your personal (non-commercial) desktop and laptop use. Commercial use of this software requires a separate license from Oracle or from your software vendor. Please see the Oracle Technology Network License Agreement for Oracle Java SE for details.
Support
For help with this app, please see the following:
jPortable
portable Java® runtime environment
Download from PortableApps.com
Version 8 Update 281 for Windows, Multilingual
71MB download / 169MB installed
Notes | Antivirus Scan | Details
This is an online installer that will download Java during setup
— Support PortableApps.com’s development and hosting
Description
jPortable allows you to easily add a Java® runtime environment to your portable device. It automatically works with apps in PortableApps.com Format like LibreOffice Portable. No Java® runtime environment needs to be installed on the local machine and no admin rights are required. JARs can be run using our jPortable Launcher.
App Notes
Installation Note: Unlike standard portable apps which are installed to X:\PortableApps\AppNamePortable, jPortable is an add-on and is meant to be installed to X:\PortableApps\CommonFiles\Java. Once installed there, an application like OpenOffice.org Portable installed to X:\PortableApps\OpenOfficePortable will automatically make use of it.
License Change 2019-04-10: The terms under which this version of the software is licensed have changed. This version of the Java Runtime is licensed only for your personal (non-commercial) desktop and laptop use. Commercial use of this software requires a separate license from Oracle or from your software vendor. Please see the Oracle Technology Network License Agreement for Oracle Java SE for details.
Support
For help with this app, please see the following:
Делаем Java приложение независимым от установки JRE или переносным (portable)
Одна из основных трудностей распространения Java программ – необходимость наличия на компьютере пользователя среды выполнения Java Runtime Environment (JRE). Именно поэтому переносные (portable) приложения на Java редкость.
В тоже время эту проблему вполне можно разрешить и создать не только переносное, но и «обычное» приложение, которое не будет требовать наличия предустановленной JRE.
Однако, учитывая кроссплатформенность Java, сразу отметим, что в данной статье речь пойдёт о решении данной задачи применительно к среде Windows.
Существует два основных подхода к решению данной задачи.
Способ 1. Преобразование в нативный код
Иначе говоря, преобразование из jar в exe.
Казалось бы, это самый очевидный способ. Но, на самом деле, он самый трудно реализуемый и практически не работоспособный.
Сконвертировать jar в exe в принципе не проблема. В частности, есть масса утилит, которые позволяют это сделать. Однако подавляющее практически все они не избавляют от необходимости устанавливать JRE. Без JRE exe файл, созданный этими утилитами, всё равно не запустится.
Те же из них, что, если верить описанию, претендуют на полное решение данной проблемы, давно не развиваются и перед применением их необходимо самих компилировать из исходных кодов.
Способ 2. Использование переносной версии JRE
Этот способ основан на том, что JRE может работать и без установки на компьютер. Достаточно скачать архив с официальной страницы загрузки (ссылка в конце статьи) и распаковать его в любую папку. После этого JRE уже готов к работе.
Однако запустить Java программу в этом случае можно только двумя способами:
- Из командной строки;
- С помощью программы загрузчика.
Первый вариант не подходит, так как слишком сложен для рядового пользователя. Остаётся второй.
Принцип работы загрузчика, на самом деле, достаточно прост. Программа передаёт JRE команды необходимые для запуска Java приложения и после этого закрывается. Тем самым автоматизируя процесс запуска, выполняемый в случае командной строки вручную.
Рассмотрим пример написания такого загрузчика на Delphi. Предположим, что загрузчик, jar файл с Java приложением и папка с JRE расположены в одной общей папке.
Определим константы (относительный путь к исполняемому файлу JRE и передаваемые команды (включают относительный путь к файлу Java приложения)).
jPortable
Review
Free Download
A useful tool that was especially designed to help you easily add the necessary Java Runtime Environment to your portable device
Since the majority of today’s devices are Java-capable, there are countless applications that depend on the presence of the latest runtime environment (JRE) on the system they are deployed. Portable devices are also included in this equation and for this reason a dedicated utility has been created.
Going by the name of jPortable, this program has only a single purpose it follows to the letter, namely to get form the Internet and install onto the PortableApps.com storage device the most recent JRE update.
The package is quite small when compared to the setup it retrieves form the web, not to mention the aggregated final size of the installed components. User intervention during the whole process is kept to a minimum, so there are no configurations to be made, or settings one can misconfigure by accident.
In fact, when setting up jPortable, all you will have to do is select the destination of the Java Runtime Environment files. The progress of the whole operation is displayed at all times inside the installer, where both download status and transfer to disk have their animated status bars.
As soon as the operation is successfully completed, all the applications you have installed onto the portable flash drive will be able to use the Java components, even if the storage device is connected to a system without JRE or with an obsolete version on board.
If for any reason you wish to remove the current Java update from your PortableApps.com drive, you should note that there is no uninstaller available. Nonetheless, there is a simple and efficient method of cleaning all the files, by deleting the directory where all the JRE related files are kept in.
All things considered, jPortable is indeed a great means of bringing the much-desired Java compatibility to any removable device and thus allowing the programs that depend on it to run properly, right from the same drive.