package config.java; import java.io.IOException; public class Test { public static void main(String args[]) throws IOException { for (int iIndex = 0; iIndex < 100; iIndex++) { StringBuffer buffer = new StringBuffer(); buffer.append("test"); } } }