Document document = new Document(PageSize.A4); document.open(); PdfPTable table = new PdfPTable(1); PdfPCell cell; cell = new PdfPCell(new Paragraph("ONE")); ...
確定! 回上一頁