Tuesday 15, Apr 2025
We are moved to new domain
Click -> www.ehowtonow.com
Saturday, 3 June 2017

iText 5 PDF - How to generate dotted lines at end of remaining space

To create PDF file we need iText 5 jar. Download iText Jars from iText Website or Maven Repository

Maven Dependency

2.<dependency>
3. <groupid>com.itextpdf</groupid>
4. <artifactid>itextpdf</artifactid>
5. <version>5.5.11</version>
6.</dependency>

DottedLineEnder.java
package com.javatutorialcorner.itextpdf;

import com.itextpdf.text.Chunk;
import com.itextpdf.text.Document;
import com.itextpdf.text.DocumentException;
import com.itextpdf.text.Paragraph;
import com.itextpdf.text.pdf.PdfWriter;
import com.itextpdf.text.pdf.draw.DottedLineSeparator;
 

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
 
public class DottedLineEnder {
 public static final String DEST = "C:/JTC/DottedLineEnder.pdf";
 
    public static void main(String[] args) throws IOException, DocumentException {
        File file = new File(DEST);
        file.getParentFile().mkdirs();
        new DottedLineEnder().createPdf(DEST);
    }
 
    public void createPdf(String dest) throws IOException, DocumentException {
        Document document = new Document();
        PdfWriter.getInstance(document, new FileOutputStream(dest));
        document.open();
        DottedLineSeparator separator = new DottedLineSeparator();
        Chunk c = new Chunk(separator);
        Paragraph p = new Paragraph("Ends with dots ");
        p.add(c);
        document.add(p);
        p = new Paragraph("This is a much longer paragraph that spans "
                + "several lines. The String used to create this paragraph "
                + "will be split automatically at the end of the line. The "
                + "final line of this paragraph will end in a dotted line. ");
        p.add(c);
        document.add(p);
        document.close();
    }
}

Output

Reference : iText Website

Shop and help us

Flipkart Offer Snapdeal offer Amazon.in offer Amazon.com offer

Related Posts:

  • iText 5 PDF - List Leading space Example To create PDF file we need iText 5 jar. Download iText Jars from iText Website or Maven Repository Maven Dependency com.itextpdf itextpdf 5.5.11 ListWithLeading.java package com.javatutorialcorner.itextpdf; … Read More
  • iText 5 PDF - List Numbers Example To create PDF file we need iText 5 jar. Download iText Jars from iText Website or Maven Repository Maven Dependency com.itextpdf itextpdf 5.5.11 ListNumbers.java package com.javatutorialcorner.itextpdf; impo… Read More
  • iText 5 PDF - how to set label to itext list To create PDF file we need iText 5 jar. Download iText Jars from iText Website or Maven Repository Maven Dependency com.itextpdf itextpdf 5.5.11 ListWithLabel.java package com.javatutorialcorner.itextpdf; im… Read More
  • iText 5 PDF - List Alignment Example To create PDF file we need iText 5 jar. Download iText Jars from iText Website or Maven Repository Maven Dependency com.itextpdf itextpdf 5.5.11 ListAlignment.java package com.javatutorialcorner.itextpdf; im… Read More
  • iText 5 PDF - List image as bullets Example To create PDF file we need iText 5 jar. Download iText Jars from iText Website or Maven Repository Maven Dependency com.itextpdf itextpdf 5.5.11 ListWithImageAsBullet.java package com.javatutorialcorner.itext… Read More
  • Blogger Comments
  • Facebook Comments
  • Disqus Comments

0 comments:

Post a Comment

Item Reviewed: iText 5 PDF - How to generate dotted lines at end of remaining space Rating: 5 Reviewed By: eHowToNow