Double buffering is a process of doing all the drawing first in the memory and then displaying the entire screen at once. It is called double buffering because two drawing buffers are kept and you switch between them. It can be used to display fast animation without flickering. On the downside, it does have some memory overhead.
The code given below describes how to do it:
Image OffscreenImage;Graphics OffscreenGraphics;OffscreenImage = createImage(size.width(), size.height());OffscreenGraphics = OffscreenImage.getGraphics();OffscreenGraphics.drawImage(image,x,y,this);g.drawImage(OffscreenImage,0,0,this);
Professional animation effects are created using this technique.