Problems JDK 1.4 and 1.5
I have some code with JDK 5.0 ans Ive had to change it to 1.4
Please, can anyone translate it?
Iterator<ImageWriter> iter = ImageIO
.getImageWritersByMIMEType("image/bmp");
I have some code with JDK 5.0 ans Ive had to change it to 1.4
Please, can anyone translate it?
Iterator<ImageWriter> iter = ImageIO
.getImageWritersByMIMEType("image/bmp");
You'll also need to change any uses of the next() call on the itterator, adding a cast to ImageWriter.