import java.io.*; import mixer.*; public class MTst5 { public static void main(String[] args) { String html = Mixer.getContent(new File("m_tst5_1.html")); String htmlPart = Mixer.getContent(new File("m_tst5_2.html"), ""); Mixer m = new Mixer(html); m.addHTML(htmlPart, ""); m.add("", "===message===", "Hello!"); m.add("", "===name===", "Pierre"); m.add("", "===email===", "pierre@dsv.su.se"); m.add("", "===name===", "Jessica"); m.add("", "===email===", "jes-ber@dsv.su.se"); m.add("", "===name===", "Björn"); m.add("", "===email===", "bjor-ni@dsv.su.se"); m.add("", "===name===", "Nina"); m.add("", "===email===", "nina-nes@dsv.su.se"); System.out.println(m.getMix()); } }