0

is it possible for me to use java library such as

import java.io.File;
import java.io.FileInputStream;
import java.security.MessageDigest;
import java.util.ArrayList;
import java.util.HashMap;

in my j2me project?

Vladimir Ivanov
  • 42,730
  • 18
  • 77
  • 103
keihwang
  • 11
  • 4

1 Answers1

2

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.

SJuan76
  • 24,532
  • 6
  • 47
  • 87