can i use java library for java se in java me. i use smack java library to create a chat client. can i use the same libary to create a chat client for javame.
+1
A:
Probably not. Java ME uses an old version of the Java language and the java byte code specification, also a lot of the basic standard library functions are not present. The networking library functions are completely different for instance. It is very unlikely that a modern Java lib can be used in java ME without serious modifications.
Ola
2010-09-20 09:39:50
do you know any xmpp library for java me.
vishnu
2010-09-23 13:15:19
No I don't, sorry.
Ola
2010-09-30 08:51:55
A:
Definitely no. J2ME uses completely different VM - so it can't use J2SE libraries at all.
barmaley
2010-10-11 12:18:45
Depending on what the library does, you can extract the original source and perhaps "dumb it down" to allow it to work on J2ME.
seand
2010-10-12 05:04:15
A:
No.Can't mingle Java SE & Java ME.So that Java ME has it's own libraries and API's.
Achsah
2010-10-15 11:50:48