Using Floating Point

I write mobile java program using float point operationsbut i instal to the mobile as a jar filethe mobile refuse that and give a message: "No supported floating point"so what the solution for this problem
[233 byte] By [kh_257a] at [2007-10-3 7:55:14]
# 1
I use in the program MIDP 2when i want to compile the program on MIDP 1 it didn't compile
kh_257a at 2007-7-15 2:57:45 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 2
How i can make my device 6670 support MIDP 2
kh_257a at 2007-7-15 2:57:45 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 3
If it does not have MIDP 2.0, you can'tFor floating point you need CLDC 1.1 anyway, and not MIDP x.x.If you don't have that, use one of the fixed point integer libs out there.
deepspacea at 2007-7-15 2:57:45 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 4

Recently I have to do a project where the main task is to port a J2SE application to J2ME. The J2SE application was full of floating point operation and as per my knowledge J2ME does not support floationg point operation due to low memory availability. So I have converted all the floating point operations to fixed point. I found no other way to execute floating point operations :-(

diptaa at 2007-7-15 2:57:45 > top of Java-index,Java Mobility Forums,Java ME Technologies...