Hi,
my code is as follows
public void incomingMessageThread() throws FileNotFoundException, IOException
{
new Thread()
{
BuildData a = new BuildData();
for(int i = 0; i<100; i++)
{
a.parseDataFile("_"+i+"/outgoingMessages");
}
}.start();
}
I get told its an illegal start of line. If I run the code outside a thread it works fine. Any ideas whats wrong?

Runnableinto theThreadconstructor, rather than to attempt to subclass a complicated class. It's also a good idea to follow the conventions on formatting. BTW: You'll probably need to find a different way to do the exception handling. You might not discover the file is missing until after the method had returned. – Tom Hawtin - tackline Oct 8 at 16:06