Al Brotherton

Greenhorn
+ Follow
since Sep 06, 2002
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Al Brotherton

Have you had a look at what is provided on http://www.kawt.de/ I'm not sure if you'll find what you're looking for but worth a look.
21 years ago
As stated in "J2ME in a Nutshell" - "The code to be executed in the event thread should be implimented in the run() method of the Runnable passed to the callSerially() method."
What that says to me is if your "this" is not runnable nothing will be executed
21 years ago
I'm trying to instantiate a InputStreamReader to a XML file stored on my device or in the Jar file. Below is a code segment I used. Any help would be appreciated.
String URL = "file:/" + sFileName;
try {
InputConnection icFile = (InputConnection) Connector.open(URL);
parser = new KXmlParser();
parser.setInput(new InputStreamReader(icFile.openInputStream()));
21 years ago