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.
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- Difference between Types.INTEGER and Types.NULL in
You have to port the library in J2ME.
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.
No.Can't mingle Java SE & Java ME.So that Java ME has it's own libraries and API's.
Definitely no. J2ME uses completely different VM - so it can't use J2SE libraries at all.