Source Code Cross Referenced for ExampleObj2PDF.java in  » Graphic-Library » fop » embedding » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Graphic Library » fop » embedding 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * Licensed to the Apache Software Foundation (ASF) under one or more
003:         * contributor license agreements.  See the NOTICE file distributed with
004:         * this work for additional information regarding copyright ownership.
005:         * The ASF licenses this file to You under the Apache License, Version 2.0
006:         * (the "License"); you may not use this file except in compliance with
007:         * the License.  You may obtain a copy of the License at
008:         * 
009:         *      http://www.apache.org/licenses/LICENSE-2.0
010:         * 
011:         * Unless required by applicable law or agreed to in writing, software
012:         * distributed under the License is distributed on an "AS IS" BASIS,
013:         * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014:         * See the License for the specific language governing permissions and
015:         * limitations under the License.
016:         */
017:
018:        /* $Id: ExampleObj2PDF.java 426576 2006-07-28 15:44:37Z jeremias $ */
019:
020:        package embedding;
021:
022:        // Java
023:        import java.io.File;
024:        import java.io.OutputStream;
025:        import java.io.IOException;
026:
027:        // JAXP
028:        import javax.xml.transform.Transformer;
029:        import javax.xml.transform.TransformerFactory;
030:        import javax.xml.transform.TransformerException;
031:        import javax.xml.transform.Source;
032:        import javax.xml.transform.Result;
033:        import javax.xml.transform.stream.StreamSource;
034:        import javax.xml.transform.sax.SAXResult;
035:
036:        // FOP
037:        import org.apache.fop.apps.FOUserAgent;
038:        import org.apache.fop.apps.Fop;
039:        import org.apache.fop.apps.FOPException;
040:        import org.apache.fop.apps.FopFactory;
041:        import org.apache.fop.apps.MimeConstants;
042:
043:        import embedding.model.ProjectTeam;
044:
045:        /**
046:         * This class demonstrates the conversion of an arbitrary object file to a 
047:         * PDF using JAXP (XSLT) and FOP (XSL:FO).
048:         */
049:        public class ExampleObj2PDF {
050:
051:            // configure fopFactory as desired
052:            private FopFactory fopFactory = FopFactory.newInstance();
053:
054:            /**
055:             * Converts a ProjectTeam object to a PDF file.
056:             * @param team the ProjectTeam object
057:             * @param xslt the stylesheet file
058:             * @param pdf the target PDF file
059:             * @throws IOException In case of an I/O problem
060:             * @throws FOPException In case of a FOP problem
061:             * @throws TransformerException In case of a XSL transformation problem
062:             */
063:            public void convertProjectTeam2PDF(ProjectTeam team, File xslt,
064:                    File pdf) throws IOException, FOPException,
065:                    TransformerException {
066:
067:                FOUserAgent foUserAgent = fopFactory.newFOUserAgent();
068:                // configure foUserAgent as desired
069:
070:                // Setup output
071:                OutputStream out = new java.io.FileOutputStream(pdf);
072:                out = new java.io.BufferedOutputStream(out);
073:                try {
074:                    // Construct fop with desired output format
075:                    Fop fop = fopFactory.newFop(MimeConstants.MIME_PDF,
076:                            foUserAgent, out);
077:
078:                    // Setup XSLT
079:                    TransformerFactory factory = TransformerFactory
080:                            .newInstance();
081:                    Transformer transformer = factory
082:                            .newTransformer(new StreamSource(xslt));
083:
084:                    // Setup input for XSLT transformation
085:                    Source src = team.getSourceForProjectTeam();
086:
087:                    // Resulting SAX events (the generated FO) must be piped through to FOP
088:                    Result res = new SAXResult(fop.getDefaultHandler());
089:
090:                    // Start XSLT transformation and FOP processing
091:                    transformer.transform(src, res);
092:                } finally {
093:                    out.close();
094:                }
095:            }
096:
097:            /**
098:             * Main method.
099:             * @param args command-line arguments
100:             */
101:            public static void main(String[] args) {
102:                try {
103:                    System.out.println("FOP ExampleObj2PDF\n");
104:                    System.out.println("Preparing...");
105:
106:                    // Setup directories
107:                    File baseDir = new File(".");
108:                    File outDir = new File(baseDir, "out");
109:                    outDir.mkdirs();
110:
111:                    // Setup input and output
112:                    File xsltfile = new File(baseDir,
113:                            "xml/xslt/projectteam2fo.xsl");
114:                    File pdffile = new File(outDir, "ResultObj2PDF.pdf");
115:
116:                    System.out.println("Input: a ProjectTeam object");
117:                    System.out.println("Stylesheet: " + xsltfile);
118:                    System.out.println("Output: PDF (" + pdffile + ")");
119:                    System.out.println();
120:                    System.out.println("Transforming...");
121:
122:                    ExampleObj2PDF app = new ExampleObj2PDF();
123:                    app.convertProjectTeam2PDF(ExampleObj2XML
124:                            .createSampleProjectTeam(), xsltfile, pdffile);
125:
126:                    System.out.println("Success!");
127:                } catch (Exception e) {
128:                    e.printStackTrace(System.err);
129:                    System.exit(-1);
130:                }
131:            }
132:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.