Java Mailing List Archive

http://www.junlu.com/

Google
Google
Mailing List
Home
Forum Home
JBoss - Java Application Server
Tomcat - JSP/Servlet container
Struts - A MVC web framework
iText - An open source PDF Java Library
JDOM - JDOM XML Parser
JSP - A mailing list about Java Server Pages specification and reference
J2EE - A mailing list for Java(tm) 2 Platform, Enterprise Edition
J2EE Pattern - An interest list for Sun Java Center J2EE Pattern Catalog
Servlet - A mailing list for discussion about Sun Microsystem's Java Servlet API Technology
Struts & Hibernate
Subjects
JSP editor plugin for eclipse ?
org apache jasper JasperException: Unable to compile class for JSP
Tomcat: Connection reset by peer: socket write error
Cannot retrieve definition for form bean null
Struts Tiles Tutorial (free Struts training)
Where do I download Tomcat 4 0 6?
Data Access Object (DAO) pattern, example DAO 's
Where to download Tomcat v 4 1 24 from?
Tomcat 5 0 16 Requested resource not available
Servlet : Session invalidate
Oracle Connection Pooling in 3 2 2
Servlet action is currently unavailable
Tomcat/Struts Unicode Encoding/Decoding problems
Running a Simple JMS Example
Tomcat and webapplication specific java library path
Mapping in workers2 properties
org apache jasper JasperException
problem with html:text bean throwing exception
Cannot find message resources under key org apache struts action
   MESSAGE
Cannot find message resources under key org apache struts action MESSAGE
invalid direct reference problem with solution
Tool for jsp debug Try Sysdeo Eclipse Plugin
Tomcat 5 Cannot load JDBC driver class 'null ' SQL state: null
weblogic ejbc
java properties file
Jboss 3 2 3 Coyote Can 't re
Tomcat 5, Apache2 and mod jk2 integration problem
JBoss example problem new to J2EE
Value attribute of <html:checkbox
url string for connecting jboss to oracle
javax servlet ServletException: BeanUtils populate
5 0 18: Windows XP Pro vs Windows 2000
HTTP Status 404 The requested resource is not available
 
-none-

-none-

2007-09-17       - By N@(protected)

 Back
Hi,
It's the first time I use this library (iTextSharp) and I've some problem
with nested table. Every time I've this exception:
"Adding a cell at the location (1,0) with a colspan of 1 and a rowspan of 1
is illegal (beyond boundaries/overlapping)."

The primary table is definde as (1,6) so I've one columns ad six rows...

Every row (cell) has a nested table inside it. The problem start with the
second row wich have a (2,2) table nested.
this is the code for the second row:

           Table tableSecondRiga = new Table(2, 2);
           tableSecondRiga.AutoFillEmptyCells = false;
           //tableSecondRiga.Height = (float)((4.1 / CMTOINCH) *
INCHTOPONTS);
           Chunk mittenteHeaderChunk = new Chunk("Mittente", new
iTextSharp.text.Font(ITS.Font.TIMES_ROMAN, 16, ITS.Font.BOLDITALIC,
ITS.Color.WHITE));
           Chunk destinatarioHeaderChunk = new Chunk("Destinatario", new
iTextSharp.text.Font(ITS.Font.TIMES_ROMAN, 16, ITS.Font.BOLDITALIC,
ITS.Color.WHITE));
           Cell mittenteHeader = new Cell(mittenteHeaderChunk);
           Cell destinatarioHeader = new Cell(destinatarioHeaderChunk);
           mittenteHeader.HorizontalAlignment = Cell.ALIGN_MIDDLE;
           destinatarioHeader.HorizontalAlignment = Cell.ALIGN_MIDDLE;
           mittenteHeader.BackgroundColor = ITS.Color.BLUE;
           destinatarioHeader.BackgroundColor = ITS.Color.BLUE;
           mittenteHeader.Width = 50;
           destinatarioHeader.Width = 50;
           //mittenteHeader.Height = (float)((0.8/CMTOINCH)*INCHTOPONTS);
           destinatarioHeader.Width = (float)((0.8 / CMTOINCH) *
INCHTOPONTS);
           //tableSecondRiga.AddCell(mittenteHeader, 1, 1);
           //tableSecondRiga.AddCell(destinatarioHeader, 1, 2);
           tableSecondRiga.AddCell(mittenteHeader, 0, 0);
           tableSecondRiga.AddCell(destinatarioHeader, 0, 1);
           tableSecondRiga.EndHeaders();
           // Mittente
           Paragraph nomeMittentePar = new Paragraph(mittente, new
iTextSharp.text.Font(ITS.Font.TIMES_ROMAN, 14));
           Paragraph indMittentePar = new Paragraph(indirizzoMittente, new
iTextSharp.text.Font(ITS.Font.TIMES_ROMAN, 14));
           Paragraph capCittaMittentePar = new Paragraph(capMittente + " "
+ cittaMittente, new iTextSharp.text.Font(ITS.Font.TIMES_ROMAN, 14));
           Paragraph agenziaUoMittentePar;
           if (mittente.CompareTo("Sogei") == 0)
               agenziaUoMittentePar = new Paragraph(descUOMittente, new
iTextSharp.text.Font(ITS.Font.TIMES_ROMAN, 14));
           else
               agenziaUoMittentePar = new Paragraph(agenziaMittente, new
iTextSharp.text.Font(ITS.Font.TIMES_ROMAN, 14));
           Cell mittenteValueCell = new Cell();
           mittenteValueCell.Add(nomeMittentePar);
           mittenteValueCell.Add(indMittentePar);
           mittenteValueCell.Add(agenziaUoMittentePar);
           mittenteValueCell.Add(capCittaMittentePar);
           mittenteValueCell.Width = 50;
           //mittenteValueCell.Height = (float)((3.3 / CMTOINCH) *
INCHTOPONTS);
           //tableSecondRiga.AddCell(mittenteValueCell, 2, 1);
           tableSecondRiga.AddCell(mittenteValueCell, 1,0);
           // Destinatario
           Paragraph nomeDestinatarioPar = new Paragraph(destinatario, new
iTextSharp.text.Font(ITS.Font.TIMES_ROMAN, 14));
           Paragraph indDestinatarioPar = new
Paragraph(indirizzoDestinatario, new iTextSharp.text.Font(
ITS.Font.TIMES_ROMAN, 14));
           Paragraph capCittaDestinatarioPar = new
Paragraph(capDestinatario + " " + cittaDestinatario, new
iTextSharp.text.Font(ITS.Font.TIMES_ROMAN, 14));
           Paragraph agenziaUoDestinatarioPar;
           if (mittente.CompareTo("Sogei") == 0)
               agenziaUoDestinatarioPar = new Paragraph(descUODestinatario,
new iTextSharp.text.Font(ITS.Font.TIMES_ROMAN, 14));
           else
               agenziaUoDestinatarioPar = new
Paragraph(agenziaDestinatario, new iTextSharp.text.Font(ITS.Font.TIMES_ROMAN,
14));
           Cell destinatarioValueCell = new Cell();
           destinatarioValueCell.Add(nomeDestinatarioPar);
           destinatarioValueCell.Add(indDestinatarioPar);
           destinatarioValueCell.Add(agenziaUoDestinatarioPar);
           destinatarioValueCell.Add(capCittaDestinatarioPar);
           destinatarioValueCell.Width = 50;
           //destinatarioValueCell.Height = (float)((3.3 / CMTOINCH) *
INCHTOPONTS);
           //tableSecondRiga.AddCell(destinatarioValueCell, 2, 2);
           tableSecondRiga.AddCell(destinatarioValueCell, 1, 1);
           Cell riga2Cell = new Cell(tableSecondRiga);
           //table.AddCell(riga2Cell, 1, 0);
           table.AddCell(riga2Cell);

I saw that someone posted this error thinking it wold be a bug in 4.0.4, but
with no response... Someone knows the solution??
--
Ciao da
N@(protected) (MSN Messenger: napoleone1981@(protected))
"Le battaglie si vincono con gli uomini che si hanno, non con quelli che
si vorrebbero" (Napoleone Bonaparte)
"Le cose che possiedi prima o poi ti possiedono..." (Fight Club)
"Le donne possono avere bambini...gli uomini computers" (Anonimo)

Hi,<br>It&#39;s the first time I use this library (iTextSharp) and I&#39;ve
some problem with nested table. Every time I&#39;ve this exception:<br>&quot
;Adding a cell at the location (1,0) with a colspan of 1 and a rowspan of 1 is
illegal (beyond boundaries/overlapping).&quot;
<br><br>The primary table is definde as (1,6) so I&#39;ve one columns ad six
rows...<br><br>Every row (cell) has a nested table inside it. The problem start
with the second row wich have a (2,2) table nested.<br>this is the code for the
second row:
<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
Table tableSecondRiga = new Table(2, 2);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; tableSecondRiga.AutoFillEmptyCells = false;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /
/tableSecondRiga.Height = (float)((4.1 / CMTOINCH) * INCHTOPONTS);<br>&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Chunk
mittenteHeaderChunk = new Chunk(&quot;Mittente&quot;, new
iTextSharp.text.Font(ITS.Font.TIMES_ROMAN, 16, ITS.Font.BOLDITALIC, ITS.Color
.WHITE));<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
Chunk destinatarioHeaderChunk = new Chunk(&quot;Destinatario&quot;, new
iTextSharp.text.Font(ITS.Font.TIMES_ROMAN, 16,
ITS.Font.BOLDITALIC, ITS.Color.WHITE));<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Cell mittenteHeader = new Cell
(mittenteHeaderChunk);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp; Cell destinatarioHeader = new Cell(destinatarioHeaderChunk);<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
mittenteHeader.HorizontalAlignment
= Cell.ALIGN_MIDDLE;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp; destinatarioHeader.HorizontalAlignment = Cell.ALIGN_MIDDLE;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
mittenteHeader.BackgroundColor = ITS.Color.BLUE;<br>&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; destinatarioHeader.BackgroundColor =
ITS.Color.BLUE
;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
mittenteHeader.Width = 50;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; destinatarioHeader.Width = 50;<br>&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //mittenteHeader.Height = (float)((0
.8/CMTOINCH)*INCHTOPONTS);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; destinatarioHeader.Width = (float)((0.8
/ CMTOINCH) * INCHTOPONTS);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp
;&nbsp;&nbsp;&nbsp; //tableSecondRiga.AddCell(mittenteHeader, 1, 1);<br>&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //tableSecondRiga
.AddCell(destinatarioHeader, 1, 2);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp
;&nbsp;&nbsp;&nbsp;&nbsp; tableSecondRiga.AddCell(mittenteHeader, 0, 0);
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
tableSecondRiga.AddCell(destinatarioHeader, 0, 1);<br>&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; tableSecondRiga.EndHeaders();<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // Mittente
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Paragraph
nomeMittentePar = new Paragraph(mittente, new iTextSharp.text.Font
(ITS.Font.TIMES_ROMAN, 14));<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp
;&nbsp;&nbsp;&nbsp; Paragraph indMittentePar = new Paragraph(indirizzoMittente,
new iTextSharp.text.Font(ITS.Font.TIMES_ROMAN, 14));<br>&nbsp;&nbsp;&nbsp;&nbsp
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Paragraph capCittaMittentePar = new
Paragraph(capMittente + &quot; &quot; + cittaMittente, new
iTextSharp.text.Font(ITS.Font.TIMES_ROMAN, 14));<br>&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Paragraph agenziaUoMittentePar;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (mittente
.CompareTo(&quot;Sogei&quot;) == 0)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; agenziaUoMittentePar = new
Paragraph(descUOMittente, new
iTextSharp.text.Font(ITS.Font.TIMES_ROMAN, 14));<br>&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; else<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
agenziaUoMittentePar = new Paragraph(agenziaMittente, new iTextSharp.text.Font
(ITS.Font.TIMES_ROMAN, 14));<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; Cell mittenteValueCell = new Cell();
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
mittenteValueCell.Add(nomeMittentePar);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mittenteValueCell.Add(indMittentePar);<br>&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mittenteValueCell
.Add(agenziaUoMittentePar);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; mittenteValueCell.Add(capCittaMittentePar);
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
mittenteValueCell.Width = 50;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp; //mittenteValueCell.Height = (float)((3.3 / CMTOINCH) *
INCHTOPONTS);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp; //tableSecondRiga.AddCell(mittenteValueCell, 2, 1);<br>&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; tableSecondRiga.AddCell
(mittenteValueCell, 1,0);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; // Destinatario<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp; Paragraph nomeDestinatarioPar = new Paragraph
(destinatario, new iTextSharp.text.Font(ITS.Font.TIMES_ROMAN, 14));<br>&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Paragraph
indDestinatarioPar = new Paragraph(indirizzoDestinatario, new
iTextSharp.text.Font(ITS.Font.TIMES_ROMAN, 14));<br>&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Paragraph capCittaDestinatarioPar =
new Paragraph(capDestinatario + &quot; &quot; + cittaDestinatario, new
iTextSharp.text.Font(ITS.Font.TIMES_ROMAN, 14));<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Paragraph
agenziaUoDestinatarioPar;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; if (mittente.CompareTo(&quot;Sogei&quot;) == 0)<br>&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp; agenziaUoDestinatarioPar = new Paragraph(descUODestinatario, new
iTextSharp.text.Font(ITS.Font.TIMES_ROMAN
, 14));<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
else<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp
;&nbsp;&nbsp;&nbsp; agenziaUoDestinatarioPar = new Paragraph(agenziaDestinatario
, new iTextSharp.text.Font(ITS.Font.TIMES_ROMAN, 14));<br>&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Cell destinatarioValueCell =
new Cell();<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
destinatarioValueCell.Add(nomeDestinatarioPar);<br>&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; destinatarioValueCell.Add
(indDestinatarioPar);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp; destinatarioValueCell.Add(agenziaUoDestinatarioPar);<br>&nbsp;&nbsp
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; destinatarioValueCell
.Add
(capCittaDestinatarioPar);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; destinatarioValueCell.Width = 50;<br>&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //destinatarioValueCell.Height =
(float)((3.3 / CMTOINCH) * INCHTOPONTS);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //tableSecondRiga.AddCell(destinatarioValueCell,
2, 2);
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
tableSecondRiga.AddCell(destinatarioValueCell, 1, 1);<br>&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Cell riga2Cell = new Cell
(tableSecondRiga);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp; //table.AddCell(riga2Cell, 1, 0);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; table.AddCell(riga2Cell);<br clear="all">
<br>I saw that someone posted this error thinking it wold be a bug in 4.0.4,
but with no response... Someone knows the solution??<br>-- <br>Ciao da<br>N
@(protected) (MSN Messenger: <a href="mailto:napoleone1981@(protected)">napoleone1981
@(protected)
</a>)<br>&quot;Le battaglie si vincono con gli uomini che si hanno, non con
quelli che<br>si vorrebbero&quot; (Napoleone Bonaparte)<br>&quot;Le cose che
possiedi prima o poi ti possiedono...&quot; (Fight Club)<br>&quot;Le donne
possono avere bambini...gli uomini computers&quot; (Anonimo)

-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- -----
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
__ ____ ____ ____ ____ ____ ____ ____ ____ ____
iText-questions mailing list
iText-questions@(protected)
https://lists.sourceforge.net/lists/listinfo/itext-questions
Buy the iText book: http://itext.ugent.be/itext-in-action/

©2008 junlu.com - Jax Systems, LLC, U.S.A.