Advertisement
Guest User

Untitled

a guest
Sep 1st, 2015
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. Document doc = new Document(PageSize.A4.rotate());
  2.  
  3. while(iteratorRow.hasNext()){
  4.  
  5. Object valorCelulaRow = iteratorRow.next();
  6.  
  7. if(valorCelulaRow != null){
  8. Paragraph p = new paragraph ();
  9. p.add (valueCellRow.toString ());
  10.  
  11. doc.Add ((Element) p);
  12. doc.Add (p); //ERRO AQUI
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement