content.append("</body></html>");
Properties meta = new Properties();
meta.setProperty("Content-Type", "text/html");
meta.setProperty("Host", "http://localhost");
meta.setProperty("Connection", "Keep-alive, close");
Content co = new Content(url, "http://www.example.com", content.toString().getBytes("UTF-8"), "text/html", meta);
ParseData pd = new ParseData("Hello from Page " + i, new Outlink[0], meta);
StringBuffer text = new StringBuffer("Hello from Page" + i);
if (unique) {
text.append("\nCreated at epoch time: " + System.currentTimeMillis() + ", " + r.nextLong());
}