Move J2SE app to J2ME - where to start?

I currently have a command line-driven program written for J2SE, which basically just runs a number of numerical calculations and prints some output to the screen (and occasionally to a file if requested by the user).

I'd very much like to get this application running on a mobile phone, but I'm not really sure where to start. Presumably I can re-use all the code I've already written? Basically if anyone has any good resources they can point me to, or even any hints/tips from personal experience, I would be very grateful! I can find lots of bits out there regarding J2ME, but nothing specifically relating to porting an existing application.

Many thanks,

Haydn

[693 byte] By [haydnwa] at [2007-11-27 1:44:06]
# 1

it is hard to move JavaSE to JavaME because some classes used in JavaSE are not present

in JavaME, the KVM is not faster and bigger as the JVM, etc...

read docs on JavaME to know how it is working, how it is construct, read the javadoc to view

the differences between JavaSE classes and JavaME classes...

and, you can start with:

public class MoveJavaSEToJavaME extends MIDlet{

// inherited methods and the rest come here...

}

suparenoa at 2007-7-12 1:02:53 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 2
http://www.java.sun.com/j2meyou can start here....
olrac_clowna at 2007-7-12 1:02:53 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 3
http://www.java.sun.com/j2meyou can start here....
olrac_clowna at 2007-7-12 1:02:53 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 4
also have a look at the API of j2me. once you figure out the basics of midlets, the rest is piss easy
jonney69a at 2007-7-12 1:02:53 > top of Java-index,Java Mobility Forums,Java ME Technologies...