Search This Blog

Showing posts with label pdf. Show all posts
Showing posts with label pdf. Show all posts

Tuesday, 10 June 2014

Interview Questions

jdbc Interview Questions and Answers
Jsp Interview Questions and Answers
EJB 3.0 Interview Questions and Answers
corejava Interview Questions and Answers
Servlet Interview Questions and Answers
JMS Interview Questions and Answers
J2ME Interview Questions and Answers
CVS interview questions and answers
JMX interview questions and answers
AWT interview questions and answers
Core Java interview questions and answers
Eclipse interview questions and answers
Hibernate interview questions and answers
IBM WebSphere interview questions and answers
J2ME interview questions and answers
J2SE interview questions and answers
Java Applet interview questions and answers
Java Beans interview questions and answers
Java EJB Programming interview questions and answers
Java Enterprise Edition(J2EE) interview questions and answers
Java JSP Programming interview questions and answers
Java Message Service(JMS) interview questions and answers
Java Networking - Sockets And RMI interview questions and answers
Java Patterns interview questions and answers
Java Security interview questions and answers
Java Servlet Programming interview questions and answers
Java Swing Programming interview questions and answers
Java Threads interview questions and answers
Java interview questions and answers
JBoss interview questions and answers
JDBC interview questions and answers
JMS interview questions and answers
JSF interview questions and answers
RMI interview questions and answers
Spring Framework interview questions and answers
Struts interview questions and answers

Java Enterprise Edition(J2EE) Interview Questions and Answers

 
 

Java Enterprise Edition(J2EE) Interview Questions and Answers

 
 
 
 
 
Download Link

Jsp Interview Questions and Answers

 

JSP Interview Questions and Answers

 
 
 
Download Link
 
 

Servlet Interview Questions and Answers

 

            Servlet Interview Questions and Answers

 
                     

Java Threads interview questions and answers

      

        Java Threads Interview Questions and Answers

                             
                                 Download Link 
 
                   

Core Java Interview Questions and Answers

                                    

   Core Java Interview Questions and Answers





   

   Core java Interview Questions and Answers


Thursday, 9 January 2014

how to write data into PDF using Servlet

Example to write data into PDF using servlet

Let's see the simple example of writing data into PDF using servlet. In this example, we have mentioned the content type application/pdf that must be specified to display data in the PDF format.
ServletPDF.java
  1. package com.javatpoint;  
  2. import java.io.*;  
  3. import java.util.*;  
  4. import javax.servlet.*;  
  5. import javax.servlet.http.*;  
  6. import com.darwinsys.spdf.PDF;  
  7. import com.darwinsys.spdf.Page;  
  8. import com.darwinsys.spdf.Text;  
  9. import com.darwinsys.spdf.MoveTo;  
  10.   
  11. public class ServletPDF extends HttpServlet {  
  12.   
  13. public void doGet(HttpServletRequest request,  
  14.         HttpServletResponse response) throws IOException {  
  15.   
  16. PrintWriter out = response.getWriter();  
  17. response.setContentType("application/pdf");  
  18.   
  19. response.setHeader("Content-disposition","inline; filename='rajvishwakarma15@blogspot.pdf'");  
  20.   
  21. PDF p = new PDF(out);  
  22. Page p1 = new Page(p);  
  23. p1.add(new MoveTo(p, 200700));  
  24. p1.add(new Text(p, "rajvishwakarma15@blogspot.com"));  
  25. p1.add(new Text(p, "by Raj Vishwakarma"));  
  26.           
  27. p.add(p1);  
  28. p.setAuthor("Ian ");  
  29.   
  30. p.writePDF();  
  31.   
  32. }  
  33. }  

Ref. javatpoint.com