Пример #1
0
  public static void main(String[] args) throws FileNotFoundException, DocumentException {
    Document document = new Document();
    @SuppressWarnings("unused")
    PdfWriter pdfWriter = PdfWriter.getInstance(document, new FileOutputStream("HelloWorld.pdf"));
    document.open();

    Paragraph paragraph1 = new Paragraph("This is Paragraph 1");
    Paragraph paragraph2 = new Paragraph("This is Paragraph 2");
    paragraph1.setIndentationLeft(80);
    paragraph1.setIndentationRight(80);
    paragraph1.setAlignment(Element.ALIGN_CENTER);
    paragraph1.setSpacingAfter(15);
    paragraph2.setSpacingBefore(15);
    paragraph2.setAlignment(Element.ALIGN_LEFT);
    Phrase phrase = new Phrase("This is a large sentence.");
    for (int count = 0; count < 10; count++) {
      paragraph1.add(phrase);
      paragraph2.add(phrase);
    }

    document.add(paragraph1);
    document.add(paragraph2);

    document.close();
  }
Пример #2
0
 private void addHeader(Document document) throws Exception {
   Image image = loadDrawable(R.drawable.ic_launcher, 26);
   Paragraph para = new Paragraph();
   para.setAlignment(Element.ALIGN_CENTER);
   para.setIndentationLeft(20);
   para.setIndentationRight(20);
   para.setSpacingBefore(0);
   para.setSpacingAfter(24);
   para.add(new Chunk(image, 0, 0));
   para.add(new Phrase(" ", TITLE_FONT));
   para.add(new Phrase(mContext.getString(R.string.brew_shop_recipe), TITLE_FONT));
   para.add(new Phrase(" ", TITLE_FONT));
   para.add(new Chunk(image, 0, 0));
   document.add(para);
 }
Пример #3
0
  private static Paragraph createCleanParagraph(String txt1, float fontSize1, boolean bold1) {
    Phrase phrase = new Phrase(txt1);
    phrase.getFont().setSize(fontSize1);
    if (bold1) {
      phrase.getFont().setStyle(Font.BOLD);
      phrase.setLeading(fontSize1);
    }
    Paragraph paragraph = new Paragraph(phrase);

    paragraph.setLeading(fontSize1);
    paragraph.setSpacingBefore(0);
    paragraph.setSpacingAfter(0);
    paragraph.setExtraParagraphSpace(0);
    paragraph.setFirstLineIndent(0);
    paragraph.setIndentationLeft(0);
    paragraph.setIndentationRight(0);
    paragraph.setAlignment(Rectangle.ALIGN_CENTER);

    return paragraph;
  }
Пример #4
0
  public String execute() throws IOException {
    HttpServletResponse response = ServletActionContext.getResponse();
    Voucher cash_voucher = new Voucher();

    try {

      String final_prepared_by = getPrepared_by();
      String final_paid_to_name = getPaid_to_name();
      String final_reason_paid_amount = getReason_paid_amount();
      String final_cash_cheque_no = getCash_cheque_no();
      float ch_amount = getCash_cheque_amount();
      String enter_date_page = getDate();
      // System.out.println("enter_date in setter method"+enter_date_page);

      String payment_type_final = getCheck();
      // System.out.println("payment_type_final"+payment_type_final);

      SimpleDateFormat simpleDateFormat3 = new SimpleDateFormat("yyyy-MM-dd");
      java.util.Date tempDate3 = simpleDateFormat3.parse(enter_date_page);
      SimpleDateFormat outputDateFormat4 = new SimpleDateFormat("dd/MMM/YYYY");
      Object from_date3 = outputDateFormat4.format(tempDate3);
      // System.out.println("you need to enter date is " + from_date3);

      response.setContentType("application/pdf");
      Document document = new Document(PageSize.A4, 3, 3, 50, 50);

      ByteArrayOutputStream baos = new ByteArrayOutputStream();

      PdfWriter pdfWriter = PdfWriter.getInstance(document, baos);
      document.open();

      int cont =
          cash_voucher.e_voucher_entry(
              final_paid_to_name,
              final_reason_paid_amount,
              payment_type_final,
              final_cash_cheque_no,
              ch_amount,
              from_date3,
              final_prepared_by);

      if (cont > 0) {

        String voucher_no = "";
        String emp_name = "";
        String reason_to_pay = "";
        String payment_type = "";

        String cheque_no = "";
        String amount = "";
        String enter_date = "";
        String prepared_by = "";

        String sys_date = "";

        ArrayList<String> data = cash_voucher.getting_data_voucher();
        if (data.size() > 0) {
          for (int m = 0; m < data.size(); m++) {
            String fandf_data = data.get(m).toString();

            String reg_arr[] = fandf_data.split("\\^");

            voucher_no = reg_arr[0];
            emp_name = reg_arr[1];
            reason_to_pay = reg_arr[2];
            payment_type = reg_arr[3];

            cheque_no = reg_arr[4];
            amount = reg_arr[5];
            enter_date = reg_arr[6];
            prepared_by = reg_arr[7];

            sys_date = reg_arr[8];
          }
        }

        String detailed_rupees = ConvertRupeesintoWords.NumberToWord(amount);
        String final_amount_words = detailed_rupees + "Rupees only";
        // PdfPTable table1 = new PdfPTable(new float[] { 7, 3 });

        Image image1 =
            Image.getInstance(
                "https://lh6.googleusercontent.com/-UiPLWs8CC8A/U2iMqI16btI/AAAAAAAAAFI/MsD-9T20XPI/s160-k-no/");

        image1.scalePercent(20);

        PdfPTable table = new PdfPTable(new float[] {2, 7, 5});
        PdfPCell cell;

        PdfPCell cell2 = new PdfPCell();

        cell2.addElement(new Chunk(image1, 5, -5));
        // cell2.setBorder(Rectangle.BOTTOM | Rectangle.RIGHT);
        // cell2.setBorder(Rectangle.TOP);

        // cell2.setBorder(Rectangle.BOTTOM);
        // cell2.setBorder(Rectangle.RIGHT);
        cell2.setRowspan(2);
        table.addCell(cell2);

        Chunk reportTitle = new Chunk("Nali Clock Software Solutions Pvt.Ltd." + "\n", bigbold);
        reportTitle.setUnderline(0.1f, -2f); // 0.1 thick, -2 y-location

        Chunk sbpart = new Chunk("Patnering With Global Leadres" + "\n " + "\n ", italic);
        Chunk add1 =
            new Chunk("#308/287,Above DTDC Courier, Konappana Agrahara," + "\n", smallBold);

        Chunk add2 = new Chunk("Hosur Main Road, Bangalore - 560100" + "\n", smallBold);

        Phrase phrase = new Phrase();
        phrase.add(reportTitle);
        phrase.add(sbpart);
        phrase.add(add1);
        phrase.add(add2);

        Paragraph para = new Paragraph();
        para.add(phrase);

        cell = new PdfPCell(new Phrase(para));
        // cell.setBorder(Rectangle.RIGHT);
        cell.setHorizontalAlignment(Element.ALIGN_CENTER);
        // cell.setBorder(Rectangle.TOP);

        cell.setRowspan(2);
        table.addCell(cell);

        /*  cell=new PdfPCell(new Phrase("CASH / VOUCHER ",bigbold));
        cell.setBackgroundColor(BaseColor.LIGHT_GRAY);*/

        Font font = new Font(FontFamily.TIMES_ROMAN, 12, Font.BOLD, BaseColor.WHITE);

        Chunk vouch = new Chunk("CASH / VOUCHER ", font);
        Phrase phrase_vouch = new Phrase();
        phrase_vouch.add(vouch);
        Paragraph para_voch = new Paragraph();
        // para_voch.FontFactory.getFont(new Color(0x00, 0x00, 0xFF));
        para_voch.add(phrase_vouch);

        cell = new PdfPCell(new Phrase(para_voch));
        cell.setHorizontalAlignment(Element.ALIGN_CENTER);
        cell.setBackgroundColor(BaseColor.GRAY);
        /*cell.setRowspan(2);*/
        table.addCell(cell);

        Chunk vrno = new Chunk("Vr. No :" + voucher_no + "\n" + "\n", catFont);

        Chunk date = new Chunk("Date :" + sys_date, catFont);
        Phrase phrase2 = new Phrase();
        phrase2.add(vrno);
        phrase2.add(date);

        Paragraph para2 = new Paragraph();
        para2.add(phrase2);

        cell = new PdfPCell(new Phrase(para2));
        cell.setHorizontalAlignment(Element.ALIGN_LEFT);
        table.addCell(cell);

        document.add(table);

        PdfPTable table2 = new PdfPTable(new float[] {10, 3, 1});

        cell = new PdfPCell(new Phrase("Particulars", bigbold));
        cell.setHorizontalAlignment(Element.ALIGN_CENTER);
        table2.addCell(cell);

        cell = new PdfPCell(new Phrase("Rs.", bigbold));
        cell.setHorizontalAlignment(Element.ALIGN_CENTER);
        table2.addCell(cell);

        cell = new PdfPCell(new Phrase("Ps.", bigbold));
        cell.setHorizontalAlignment(Element.ALIGN_CENTER);
        table2.addCell(cell);

        Chunk paid_to = new Chunk("Paid to :" + emp_name + "\n" + "\n", catFont);

        Chunk towards = new Chunk("Towards :" + reason_to_pay + "\n" + "\n", catFont);

        Chunk cash =
            new Chunk(
                "Cash / Cheque No. :"
                    + cheque_no
                    + "                                        "
                    + "Date : "
                    + enter_date,
                catFont);

        Phrase phrase3 = new Phrase();
        phrase3.add(paid_to);
        phrase3.add(towards);
        phrase3.add(cash);

        Paragraph para3 = new Paragraph();
        para3.add(phrase3);

        cell = new PdfPCell(new Phrase(para3));
        cell.setHorizontalAlignment(Element.ALIGN_LEFT);
        table2.addCell(cell);

        table2.addCell(new Phrase(" ", bigbold));
        table2.addCell(new Phrase(" ", bigbold));

        Chunk rupees = new Chunk("Rupees in words :" + final_amount_words + "\n", catFont);

        Chunk total =
            new Chunk(
                "                                                                                         Total :"
                    + " "
                    + "\n",
                bigbold);

        Phrase phrase4 = new Phrase();
        phrase4.add(rupees);
        Phrase phrase5 = new Phrase();

        phrase5.add(total);

        Paragraph para4 = new Paragraph();
        para4.setAlignment(com.itextpdf.text.Element.ALIGN_LEFT);

        para4.add(phrase4);

        Paragraph para5 = new Paragraph();
        para5.setAlignment(com.itextpdf.text.Element.ALIGN_RIGHT);
        para5.setIndentationRight(70);
        para5.add(phrase5);

        Paragraph para6 = new Paragraph();
        para6.add(para4);
        para6.add(para5);

        cell = new PdfPCell(new Phrase(para6));

        table2.addCell(cell);

        Chunk amt = new Chunk(" " + amount, bigbold);

        Phrase ph_amt = new Phrase();
        ph_amt.add(amt);
        Paragraph para_amt = new Paragraph();
        para_amt.add(ph_amt);
        cell = new PdfPCell(new Phrase(para_amt));
        cell.setVerticalAlignment(Element.ALIGN_BOTTOM);
        table2.addCell(cell);

        table2.addCell(new Phrase(" " + " ", bigbold));

        cell =
            new PdfPCell(
                new Phrase(
                    "Prepared By                   Checked By                        Authorized By                              Receiver's Signature "
                        + "\n "
                        + "\n "
                        + "\n ",
                    catFont));

        cell.setColspan(3);
        cell.setRowspan(2);
        table2.addCell(cell);
        document.add(table2);
      } else {
        PdfPCell cell_final;
        PdfPTable ta_final = new PdfPTable(new float[] {2, 7, 5});

        cell_final = new PdfPCell(new Phrase("Record is not inserted Please try Again", smallBold));
        cell_final.setHorizontalAlignment(Element.ALIGN_CENTER);
        cell_final.setColspan(3);
        ta_final.addCell(cell_final);
        document.add(ta_final);
      }

      document.close();

      pdfWriter.close();
      document.close();

      response.setContentLength(baos.size());
      response.addHeader("Content-Disposition", "attachment; filename=\"cash voucher.pdf\"");
      OutputStream out = response.getOutputStream();
      out = response.getOutputStream();
      baos.writeTo(out);
      out.flush();
      out.close();

    } catch (Exception e) {
      System.out.println("problem in generating pdf for  cash e voucher");
      System.err.println("exception in print==" + e.getMessage());
      e.printStackTrace();
    }
    inputStream.close();
    return "SUCCESS";
  }