writer2.writeEmptyElement("http://c","d");
writer2.writeEmptyElement("http://d","e");
writer2.writeEmptyElement("http://e","f");
writer2.writeEmptyElement("http://f","g");
writer2.writeAttribute("http://c","chris","fry");
writer2.writeCharacters("foo bar foo");
writer2.writeCharacters("bad char coming[");
char c = 0x1024;
char[] array = new char[1];
array[0]=c;
writer2.writeCharacters(new String(array));