Hi, I have static block as follows in my java class:- public class SimpleWeb extends Thread { static { String image = "image/"; MIME_TYPES.put(".gif", image + "gif"); MIME_TYPES.put(".jpg", image + "jpeg"); MIME_TYPES.put(".jpeg", image + "jpeg"); MIME_TYPES.put(".png", image + "png"); String text = "text/"; MIME_TYPES.put(".html", text + "html"); MIME_TYPES.put(".htm", text + "html"); MIME_TYPES.put(".txt", text + "plain"); } //other methods in class } ...