How to optionally use classes that may or may not be installed ?
From: Sam Iam (thatsamiam_at_yahoo.com)
Date: 01/31/04
- Next message: Sanjay Meher: "How can keep only one VM running in One Operating System"
- Previous message: terry: "Drag GIF image on JPanel"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: 30 Jan 2004 20:09:10 -0800
I have a J2ME midlet where I want to optionally use Sprint classes if
they're installed.
If I use this snippet below & run on non-Sprint phones then it just
exits suddenly.
How do I test for & use optional classes that may or may not be
installed on the client ?
thanks,
- Sam.
import com.sprintpcs.util.Muglet;
boolean bMuglet = false;
try {
Muglet MugletInstance = Muglet.getMuglet();
if (MugletInstance != null) {
bMuglet = true;
this.strURL = MugletInstance.getReferringURI();
this.strParams = MugletInstance.getURI();
}
} catch (Exception e) {
System.err.println(e.toString());
}
- Next message: Sanjay Meher: "How can keep only one VM running in One Operating System"
- Previous message: terry: "Drag GIF image on JPanel"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]