- How to run your Java apps on Android devices
- Запускаем консольные Java приложения на Android
- Top 9 Android Apps and IDE for Java Coders and Programmers
- JavaIDEdroid
- Java Editor
- DroidEdit
- Dcoder
- Code Peeker Pro: Source Reader
- AIDE – Android IDE
- Anacode IDE
- Quoda Code Editor
- Java N-IDE
- Will android run java apps
- Установка
- Использование
- Итоги
How to run your Java apps on Android devices
There are numerous people who have decided to stick permanently with their J2ME phones. This is simply because they do not want to lose their favourite Java apps. An old friend I hooked up with yesterday has a similar experience. He had to stop a particular activity because he couldn’t get the Android version of the J2ME application.
By default, Android devices cannot run Java apps(.jar or .jad). Many of you might as well be looking for a way to run your favourite Java apps on your Android phones. There are two “personally tried” methods you can apply to get this done:
NetMite
Netmite is an online service that helps you convert your .jar/.jad apps to the .apk file extension which is recognized by Android.
This is the first service I tried and it worked perfectly for me.
Follow the following instructions to enjoy Netmite:
- Visit Netmite for android’s website here
- You need to first of all download the Java app runner for Android to your device. Without this installed, no java app will run on your device even after you’ve converted it to .apk. So, Download it now. Then install it normally on your Android device.
- Get the .jar/.jad of your Java app on your computer and upload here. Or just copy the URL of your .jar/.jad file and paste it in the space provided on Netmite’s Conversion page.
- Your .jar/.jad app should now be uploaded and converted to .apk. Upon completion, your .apk extension will download.
- You can then install your converted app to your Android device normally.
Jbed 1.20 for Android
Jbed 1.20 is an Android app which allows you to install and run Java apps. This approach is easier, preferred and recommended, at least from my experience with the two. JBed 1.20 can run on Android 1.5 – 2.3 devices with each version having it’s Jbed 1.20 version. Select the download link of your Android device below to download Jbed.
Once you have downloaded and installed Jbed 1.20, all you have to do is to install any .jar/.jad file into your device.
NOTE: This app doesn’t appear as Jbed in your apps list, instead it is simply named “Java”.
You will not be able to use the normal Android installer to install your .jar/.jad apps. This is because Android is built to install only .apk files. So, I suggest you navigate to the directory of your .jar/.jad file using any “File Browser app”, and click on it. You will be asked to “Complete Action using…”
Select “Java” from the list of apps displayed. You will be warned that the app you are installing is untrusted. Just “Continue Anyway” by clicking on “OK”.
To launch your newly installed app, you will have to first navigate to “Java” in your apps list, and the select the exact app you want to launch.
Conclusion
I prefer installing my J2ME apps with Jbeb 1.20 instead of the Netmite online service. I just don’t buy the idea of first uploading my .jar files and then downloading my .apk files. The process is a bit long for me. I prefer just installing my .jar files directly. Also, I have noticed that apps installed with Jbeb 1.20 perform better.
Do expect a more comprehensive comparison between the two methods any moment from now, but as for now I prefer Jbed 1.20.
Apps I Have Installed
- Opera mini 5
- Dictionary 4.1
- Dictionary 2.4
- lm countdown
- and some others
You may not enjoy 100% effeciency on all converted apps, depending on your device. One issue you may experience has to do with screen size. On my tablet some of the apps just open in the top left corner while some others supports full screen.
You don’t have to miss the experience of your old java apps (especially those that don’t have Android versions) any longer.
Try the above and share your experience. Do not hesitate to comment if you have any challenge with the process.
Источник
Запускаем консольные Java приложения на Android
Речь пойдёт о проекте-утилитке, который может пригодиться всякому кто изучает Java и не всегда имеет под рукой ПК для просмотра работы примера кода в полевых условиях (как-то — в метро, маршрутке, кафешке и т.д.).
Необходимость создать сие поделище возникла когда я готовился к OCJP-сертификации. После успешного прохождения оной, решил предоставить плоды своих задумок на обозрение уважаемым участникам хабрасообщества.
Ноутбука у меня нет, а запускать примеры кода на смартфоне, сидя на кухне за чашечкой чая, удобно.
Так уж повелось, что бо́льшая часть примеров для обучения обычно приводится именно в формате консольных программ. Замечательный инструмент AIDE позволяет собирать Android-приложение на основе Eclipse-проектов. Возможность, увы, недостаточная для запуска консольных примеров методом копипасты.
Дело за малым — перенаправляем потоки ввода/вывода в UI контролы:
Консольная программа стартует в отдельном потоке из обработчика activity onResume() :
Здесь же можно задавать аргументы командной строки — старый добрый args . Пример — запуск BankTellerSimulation на 10 секунд:
Поддерживается работа нескольких потоков ( SimpleThreadsTest ):
HorseRace и BankTellerSimulation — примеры более сложных многопоточных приложений (взяты из книги Thinking in Java, 4th Ed by Bruce Eckel).
Ошибки времени выполнения
Напоследок, для полноты возможностей, был добавлен консольный ввод. Пока что мои познания в области пользовательского интерфейса Android не велики. Кое-как впихнуть EditText удалось, но результат не идеален 🙂
Приглашение ввода строки ( ReadingInputTest ):
Функции меню
Exit выключает процесс через System.exit(0) .
Программа «одноразовая». Повторных перезапусков нет (не хотелось возиться с очисткой значений статических полей).
Что делает Clear — большой секрет.
Что не работает
• assert ‘ы Java. Т.е. оператор
исключение java.lang.AssertionError не кинет. Не путать с assert’ами JUnit — с ними всё в порядке!)
• Класс Console .
• Поле ввода не всегда подхватывает фокус.
Файлы проекта
Исходники можно забрать с GitHub, либо скачать zip-архив с проектами для Android Studio и Eclipse.
Источник
Top 9 Android Apps and IDE for Java Coders and Programmers
December 11, 2014 4 min read
Recently at IDRsolutions my colleagues have spent a lot of time traveling to different conferences such as Oracle Code One and DevFest. One of the complaints my colleagues have is the amount of luggage they have to carry, especially when they still want to work on code for our Java PDF Viewer and SDK, PDF to HTML5 converter and a Java ImageIO replacement.
Having previously written an article on the ‘The 10 Best Android Apps for Designers and Web Developers’ as I spend a lot of my time on the web development and designing side of things, it occurred to me that Android is an extremely powerful platform (and open source) and I would be sure to find useful Apps and IDE’s for Java Coders and Programmers.
So to help make things easier for them, and with my keen interest in technology and love of gadgets, I grabbed my trusty Android phone to see what I could find.
JavaIDEdroid
JavaIDEdroid is an IDE (integrated development environment) that can run on Android and allows you to natively create Android applications without the need to use the Android SDK on Mac, Windows or Linux. JavaIDEdroid comes equipped with an aapt tool, compiler for Java, dx tool, DexMerger tool, ApkBuilder, zipsigner-lib (this library also does the zipalign), SpongyCastle Library, BeanShell Interpreter and JavaRunner, which allows running of any binary Java command line applications (.jar file).
Java Editor
Java Editor is a very easy-to-use and simple Java editor. It’s limited in functionality but it can color the syntax nodes, attributes, properties, events and also supports auto-completion and search and replace. It can open default files with the extensions jav & java.
DroidEdit
DroidEdit is a text and source code editor (similar to Notepad++ on the PC) and is available for android tablets and phones. DroidEdit is supported by android tablets with external keyboards like the Asus Transformer or those with third-party external keyboards, there is also support for Hackers Keyboard. It also supports a variety of languages like C, C++, C#, Java, HTML, CSS, Javascript, Python, Ruby, Lua, LaTeX, and SQL.
There is also a premium version with SFTP/FTP, Dropbox, Drive and Box support (great if you are on the move), custom themes (for those that want to customize everything), external commands through SSH and root mode.
Dcoder
Dcoder is a mobile coding IDE that is designed to help you learn to programme. It supports over 30 programming languages, including Java, C, C++, Python, C#, PHP and Ruby. It has a Rich Text Editor which has syntax highlighting, some autocomplete features and undo/redo. It also comes with algorithm problems for you to solve, to help you learn.
Code Peeker Pro: Source Reader
Code Peeker Pro comes with syntax highlighting and allows you to look up snippets. Although not an editor, it is a useful code reader and has been selected to be part of the Google Play for Education program and is currently used in schools as a teaching aid. Code Peeker will open and highlight any supported code language like C/C++ (c, cc, CPP, h, hpp), C# (c-sharp, csharp, cs), CSS, Java, JavaScript (js, JScript), PHP, Python (py), Ruby (rails, ror), XML (XML, XAML, XSLT, HTML, XHTML), ActionScript 3 (as3), AppleScript, Cold Fusion, Delphi/Pascal, Diff/patch files, Erlang, Groovy, JavaFX (jfx), Perl (pl), PowerShell (ps), Sass, Scala, SQL, Terminal scripts (bash, shell, sh, RC, conf), Visual Basics (vb, vbnet) and Verilog & System Verilog (v, SV)
It can also mark where the important code is, comes with a built-in file browser (in case your phone doesn’t have one), supports internal and external SD card memory and also supports other file browsers (Dropbox, File Expert, FX, Astro File Manager, etc).
AIDE – Android IDE
AIDE is an integrated development environment (IDE) for developing real Android apps directly on your Android device. It comes with interactive coding lessons and step-by-step tutorials for app development and Java programming skills. You can visually design apps, write code with the editor which can do code completion, real-time error checking, refactoring, smart code navigation and more.
AIDE supports Java/Xml and the Android SDK, apps with C/C++ and the Android NDK as well as pure Java console applications. AIDE is fully compatible with Dropbox and allows easy download of your code from your Dropbox and sync back your changes. AIDE can also open Android Studio projects which follow the default folder structure. AIDE also supports Git for professional development.
Anacode IDE
Anacode is another IDE (integrated development environment) and source code editor that supports the languages Java, HTML, CSS, PHP, JavaScript and C/C++ and allows you to build and run from your android device.
You can also write and test HTML, JavaScript and CSS in the built-in or system browser, upload to FTP and support the Tasks list too.
Quoda Code Editor
Quoda is easy to use source code editor or IDE, similar to Notepad++, with support for SFTP/FTP(S) servers and cloud storage (Dropbox and Google Drive). Some of the features include syntax highlighting with themes, cross-session editing, code-completion, extended keyboard, downloading source code from URL, auto-encoding detection, brace matching, auto-indentation, line bookmarking, colour picker, HTML formatting and more. These features come at a premium though and you may have to pay extra for newer or additional features. There is support for the following programming languages which include: ActionScript, C, C++, C#, CSS, Haskell, HTML, Java, JavaScript, Lisp, Lua, Markdown, Objective-C, Perl, PHP, Python, Ruby, SQL, Visual Basic and XML.
Java N-IDE
Java N-IDE was created to help people learn Java. It is a lightweight IDE that only supports Java. However, it does come with an offline compiler, autocomplete and code formatter. It is an open-source IDE with more features currently being worked on.
Hopefully, this guide has given you some useful ideas of what editors and IDEs you can use if you are on the go and also gives you a bigger insight into what your Android phone/tablet can do in terms of coding/programming.
Do you use your Android Phone or Tablet in a similar way? Let us know what apps you use.
If you are interested in IDE articles take a look at:
We now have a series of articles on what is new in Java 9:
Источник
Will android run java apps
Сегодня речь пойдет о том, как запускать полноценные java-приложения на устройствах под управлением Android, для чего это может быть необходимо и какие приложения будут актуальны для мобильной платформы. Полноценные приложения это те, для запуска которых не хватает возможностей Dalvik VM. Таким приложениям необходима JRE. Далее поговорим о том, как ее установить и работать с ней.
Установка
Для установки JRE требуется установить какой-нибудь terminal и busybox. Последний пакет требует наличия root-прав. О том, как получить root-права для Android можно прочесть здесь. Сама JRE не требует root. Скачать приложение можно из основного репозитория альтернативного маркета F-droid, либо самостоятельно собрать пакет из исходного кода. Сам процесс установки тривиален, все как и для любого другого apk-файла. После запуска программы она предложит докачать дополнительные библиотеки (glibc, awt и т.д.). Кстати, все зависимости, вроде терминала и busybox программа также способна скачать самостоятельно. Разумеется, для максимальной совместимости необходимо отметить все элементы.
Использование
Для запуска jar-архива нажимаем на кнопку «run jar file», программа запрашивает доступ к файловой системе. Выбираем программу, с помощью которой указываем файл для запуска.
Лично я рекомендую Total Commander в качестве файлового менеджера. Он бесплатен и очень удобен, плюс есть поддержка плагинов.
Так вот, после выбора файла открывается окно терминала, который запускает java-машину и передает ей путь к выбранному jar-файлу. Далее, в зависимости от программы, работа будет через терминал, либо запустится отрисовка интерфейса. Очень легко и удобно, не правда ли? К сожалению, есть небольшой косметический недочет, при первом запуске в терминале криво отображается путь к исполняемому файлу java и передаваемым аргументам.
Но на работу это не влияет, а при повторном запуске команды она отображается правильно.
На рисунке результат запуска небольшого тестового проекта. Его код приведен ниже
Что касается GUI-приложений, то мой AExplorer отказался запускаться, ссылаясь на отсутствие поддержки в текущих версиях.
Тем не менее, «полноценные» консольные приложения работают без особых проблем.
Итоги
Не смотря на очевидные недоработки в запуске оконных приложений, на сегодняшний день уже возможно запускать консольные java-приложения. Они работают без каких-либо проблем, если не используют каких-либо дополнительных нативных библиотек. В таком случае необходимо сначала собрать библиотеку на устройстве, а уже потом запускать jar-архив. Тем не менее, java installer на сегодняшний день вполне жизнеспособный проект.
Источник