开发者

Is it possible to use java SE library in J2me?

开发者 https://www.devze.com 2023-02-18 03:38 出处:网络
is it possible for me to use java library such as import java.io.File; import 开发者_StackOverflowjava.io.FileInputStream;

is it possible for me to use java library such as

import java.io.File;
import 开发者_StackOverflowjava.io.FileInputStream;
import java.security.MessageDigest;
import java.util.ArrayList;
import java.util.HashMap;

in my j2me project?


Short answer: No.

Long answer: You can try to add the jars as third party libraries, but you may find conflicts. More important, when you finally deploy in the target system, you may find that these libraries do not work with that JVM.

0

精彩评论

暂无评论...
验证码 换一张
取 消