How to create new paragraph in determinate position with Apache poi?

Viewed 34

I need to insert new paragraphs in diferents positiins in docx.

My code insert new paragraph but not in determinate position

XWFParagraph. 
para=docx.createParagraph();

XWPFRun run =para.createRun();

run.setText("example 
 paragraph");
0 Answers
Related