> I cannot get the SimpleTransform sample to work - running "java > SimpleTransform.java" gives the familiar "Exception in thread "main"
In java the source code must be compiled into java 'bytecode' to be run by your systems Java Virtual Machine, so you need to compile SimpleTransform.java first (using 'javac') into a .class file, then run that by typing, java SimpleTransform If you're new to all this you might like to check out Xselerator, a really good tool that makes it easy to perform transforms (Im not associated with it in anyway, I just really like it :) cheers andrew --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.470 / Virus Database: 268 - Release Date: 08/04/2003
