Okay, I get it Zod is the bad guy. But is he an idiot? You take blue Kryptonite to make sure you don’t get sucked up to another world only to put it into your foe…and you get sucked up into that other world anyways? Wow! I kind of saw that coming, I won’t lie. Season 9 felt like a real slow burn for me. I like that about the older TV shows when we got more than twenty episodes a season! Talk about a wild ride. Season Nine did not disappoint. Now, onto Season Ten! The final and last season of Smallville.
Sometimes you just need to capture a screenshot in Java. Well look no further here's the code in question!
import java.awt.AWTException;
import java.awt.HeadlessException;
import java.awt.Rectangle;
import java.awt.Robot;
import java.awt.Toolkit;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
public class ScreenShot {
public static void main(String[] args) throws IOException {
BufferedImage image;
try {
image = new Robot().createScreenCapture(new Rectangle(Toolkit.getDefaultToolkit().getScreenSize()));
ImageIO.write(image, "png", new File("screenshot.png"));
} catch (HeadlessException e) {
e.printStackTrace();
} catch (AWTException e) {
e.printStackTrace();
}
}
}
Comments
Post a Comment