//Task:TODO Use a doc file of the project and adapt the temp directories
HWPFDocument document = new HWPFDocument( new FileInputStream( "c:/temp/test.doc"));
Range range = document.getRange();
//range.delete();
range.insertBefore("hallo christian");
System.out.println("Example you supplied:");
System.out.println("---------------------");
for (int x = 0; x < range.numSections(); x++)
{
Section section = range.getSection(x);