import java.io.*; import mixer.*; public class MTst1 { public static void main(String[] args) { String html = Mixer.getContent(new File("m_tst1.html")); Mixer m = new Mixer(html); m.add("===name===", "Wijkman"); m.add("===email===", "wijkman@dsv.su.se"); System.out.println(m.getMix()); } }