vote up 3 vote down star
3

I'd like to create a basic "Hello World" style application for the IPhone using Java - can anyone tell me how?

flag

75% accept rate
I believe jailbroken iPhones can support Java applications. At least, when mine was jailbroken, they had sample Java applications in the package repository – Chris Serra Oct 23 '08 at 18:35

13 Answers

vote up 0 vote down

According to http://www.mono-project.com/Mono%3AIphone Mono has been ported to the iPhone and is available as a commercial product named MonoTouch. This might be a good way to get up and running quickly if you know C# but not Objective C.

link|flag
vote up 0 vote down check

Finely I have not bought an iphone. That is why I cannot try any proposed solution. But Thanks a lot for each of you. I voted most of your answer.

link|flag
vote up 1 vote down

As has been said, Java is not officially supported. But if you absolutely must run Java, you can jailbreak your phone and run Java that way. I'm not going to provide instructions on Jailbreaking your phone, it is easy enough to google it.

Cydia, one of the applications/installers you install when you jailbreak, has a Java installer that you can use. It uses the JamVM, a small, lightweight JVM.

Through Cydia, you can also install some demo applications, including a sample HelloWorld console app. In addition, I have heard that people have gotten Jetty to work on the iPhone but have not tried it myself.

GUI development in Java on the iPhone is currently a work-in-progress. To find out more info, there is an iPhone-Java mailing list you can subscribe to. The Java layer is making native calls to the Objective-C layer and is not very Java-centric. You need to understand how to code in Objective-C to create a GUI.

link|flag
vote up 1 vote down

You can write the Java code and translate it to Objective-C using XMLVM.

link|flag
vote up 5 vote down

I just stumbled upon this Google TechTalk video "Developing iPhone Applications using Java".

link|flag
vote up 1 vote down

If you really want to develop java applications on an iPhone (or any other phone for that matter that supports some other language) you may be able to get the JVM (Java Virtual Machine) to work with C++/Cocoa (headers/wrappers) and then call your java code from C++ or through an interface to the JVM.

Although I'm not sure how much experience you have. Doing something like that would take some time and expertise, but I'm sure theres an interface for the JVM for C++ at least floating around somewhere that you could use in this fashion.

link|flag
vote up 2 vote down

1) If you know J2ME, that is very easy. First you write the code.

2) Then download alcheMo for iPhone, contains translator to convert J2ME application source code to equivalent C++ source code for iPhone. alcheMo for iPhone is capable of converting J2ME applications utilizing an extensive subset of Java ME CLDC 1.1 and MIDP 2.0 (including touch screen support) and supports several JSR extension APIs including the JSR-256 mobile sensor API.

link|flag
vote up 5 vote down

There are 2 ways to develop for iPhone.

The best method is to use Objective-C and Cocoa.

The alternative is to create a web-based app with JavaScript which they can access through the iPhone browser (but this will only be available to users while connected to the web).

A good alternative if you want to create something similar in Java would be to target google's Android platform (e.g. the G1 handset)

link|flag
vote up -5 vote down

Get on the Andriod train!

Its all java.

Google wrote the SDK (Googles VM, emulator, eclipse plugins and everything). Also when you develop an app for Andriod you get 70 percent of the profit.

OpenSource beats iPropriety everytime.

I was able to download it all and get a hello world app running out of the gate with the sdk very quickly.

link|flag
Marked down. Irrelevant. – Rob Drimmie Oct 23 '08 at 14:34
I don't think this is irrelevant - upvote! – Iain Oct 23 '08 at 15:22
Yes this is RELEVANT its a way to code java on a new emerging phone technology and platform Rob!.. Are you some kind of google hater? – mugafuga Oct 23 '08 at 16:31
it is irrelevant, because it doesn't answer the question. The question is about developing on the iPhone. – Stimy Oct 23 '08 at 18:34
It IS relevant because it shows where he "can" do something on a phone that has virtually the same hardware as the iphone yet be able to do it in JAVA...... Just saying you can't do it doesn't help anyone. – mugafuga Oct 23 '08 at 19:10
show 2 more comments
vote up 1 vote down

As it stands right now, Java is not supported on the iPhone. You can use Objective C and then cross compile it into a Java application. Sun Microsystems is working with Apple to make the iphone java capable. As mentioned above Cocoa is the best language to use when developing applications for the iphone.

link|flag
Cocoa isn't a language. Objective-C is a language. Cocoa is a framework. – Sherm Pendley Oct 23 '08 at 18:49
vote up 6 vote down

Might want to check Alchemo for iphone never used it myself yet. It convert your CLDC 1.1 MIPD 2.0 code into native iPhone code. It even take care of the memory management.

link|flag
Didn't see your post before. Just removed mine and up-voted yours. The guys at innaworks are doing some rad things like this. – Feet Oct 23 '08 at 21:50
vote up 2 vote down

Short answer: you can't, Java isn't supported. Check out how to: http://developer.apple.com/iphone/
http://blogs.zdnet.com/Burnette/?p=338
Well, maybe it does support Java internally, but developers cannot use it yet. i

link|flag
vote up 11 vote down

You can't code in Java for iPhone. The iPhone only supports C++/Cocoa.

link|flag
Correction: Objective-C/Cocoa (or, if you prefer, Objective-C++) – Ben Gottlieb Oct 23 '08 at 13:34
Yes that's wrong, it's Objective-C. – Iain Oct 23 '08 at 14:24
I read the slash as "or", not "with" - that is, I think he meant to say C++/Objective-C. – Sherm Pendley Oct 23 '08 at 18:48
Unless you Jailbreak... – Max Stewart Oct 23 '08 at 21:54
Or use XMLVM to translate Java to Objective-C – Ichorus Oct 27 '08 at 18:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.