How to tell whether it is J2SE or some other "crippled" API?
Look for some piece of J2SE missing from the other environment.
String s = "java.tell.taling.class";
boolean ample=false;
try{
Class.forName(s);
ample=true;
}
catch (Exception e) {