Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Does anyone know some free AOT Java compiler? I have found just one - http://gcc.gnu.org/java/.
https://www.excelsiorjet.com/
As of now, it fully supports Java SE 8 and the Standard Edition is free (but only supports 32-bit Windows and Linux.)
GCJ , as you've already noted, is probably your best option. If you're looking for something that runs on Windows you'll need to setup a Cygwin or MinGW environment that runs the GCC.
JNC is an old one that may still work, it was built for Java 1.5 and is based on the GCC.
Not sure how finished it is, but this project uses LLVM and can AOT compile Java and .NET
http://vmkit.llvm.org/
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I'm looking for a bundle to download and it is unclear if any of them have Java 8 support. I'm interested in Eclipse for Java EE developers bundle.
Instructions on how to use Java 8 for eclipse can be found here. Note, however, that this isn't a public release, and there are likely still bugs with it. Both Netbeans and IntelliJ IDEA have better support for Java 8, at the moment.
You might very well be in luck, support for Java 8 should have gone public yesterday 18th March 2014.
https://wiki.eclipse.org/JDT_Core/Java8
-Kaz
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
if I have a native android app (written in Java of course), what cross platform tool would you recommend to make it usable on iOS as well? I have been reading quite a lot about it, but most toold require code being written in html,css,js (phonegap, appcelerator etc), or for instance c# (xamarin), but which one would wrap my java code?
There is no solution that will work out of the box. You'll likely have to rewrite at least the UI whatever way you choose.
If you want the code to run on any mobile platform, you'll have to rewrite your code in html/css/js.
If you just want it to run on iOS, you have these options:
If you actually want to use the very same code, use RoboVM. This will allow you to parts of the original Java code on iOS in a JVM.
Another approach would be to automatically generate Objective C code from your Java code. This can be done using J2ObjC.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm looking for a IDE that supports java and is based over terminal. I'm using Ubuntu 12.04 and it doesn't have any gui installed and I'd prefer to keep it that way. However, I'd also like to code on it and connect to it from other computers using SSH to code on there to provide a lightweight and fast IDE.
It has to be able to edit, compile, and test Java on the spot, and more languages if possible.
It would be nice if it had support for multiple projects and had a collapsible project browser, like in netbeans and most IDE's.
Does anyone know anything that meets the requirements?
I'd love something like http://www.spartacusrex.com/terminalide-1280x800.jpg however thats only for android.
emacs with JDEE is the only example I can think of. You might be able to get along with vim, but there will be a lot of ESC :! shell calls.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'd like to read the Sun Java Swing tutorials for Java version 5.
It's easy to find Sun's tutorials for SDK 6. My searches of Sun's site and using Google didn't turn up any links (yet) to the older tutorial. Even the tutorial link on the SDK 5 page pointed to the current tutorials. Are the older tutorials still available? If so, where?
Thanks in advance for any assistance.
P.S. For the curious among you, the handling of drag and drop changes between SDK 5 and SDK 6. I'd like to read the tutorial that pertains to the JVM I'm actually using.
Sun provides "Archives" with earlier snapshots of the tutorials.
The following link should have an option for the JDK 5 tutorial:
http://java.sun.com/products/archive/tutorials/download.html
You can easily find the every version of API documentation. So you really think that you can't survive with those documents? ;)
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
What is the best tool out there at the moment to convert java to c#? Apart from
j2ctranslator
j#
I use IKVM at the moment.
For your reference:
Sharpen by db4o
XES
RemoteSoft Octopus (commercial)
Note: I had no experience on them.
Don't. Leave them as Java and use IKVM to convert them to .Net DLLs.
http://www.ikvm.net/devguide/java2net.html
http://sourceforge.net/apps/mediawiki/ikvm/index.php?title=Ikvmc
I've had good results with this one. Much easier to use than Sharpen.
http://tangiblesoftwaresolutions.com/Product_Details/Java_to_CSharp_Converter.html
Microsoft has a tool called JLCA: Java Language Conversion Assistant. I can't tell if it is better though, as I have never compared the two.