String title = "<img src=\"" + status.getUser().getProfileImageURL().toString() + "\" />" + status.getUser().getScreenName();
String alternate = status.getUser().getProfileImageURL().toString();
String id = status.getUser().getScreenName();
String updated = status.getUser().getCreatedAt().toString();
String summary = status.getText();
GeoLocation geo = status.getGeoLocation();
String lon = Double.toString(geo.getLongitude());
String lat = Double.toString(geo.getLatitude());
out.println(String.format(template, title, alternate, id, updated, summary, lon, lat));
}