Hey,
I'm trying to use the BufferedImage class in AWT. I'm using J2ME on IBM's J9 virtual machine.
When I try and call the BufferedImge.getRastor() method I get the following exception:
Exception in thread "main" java.lang.NoSuchMethodError: java/awt/image/BufferedImage.getRastor()Ljava/awt/image/WritableRaster;
Now, from what I know about the JVM that error is basically telling me that the BufferedImage class does not have a method called getRastor() which returns a WritableRaster object, however this method is documented in the API and it's from version 1.4.2 so should be compatable with J2ME.
I have no idea what is going on here, can you help?
Cheers,
Pete