通过java代码生成图片、word文档、pdf文档

Java生成图片

public static void main(String[] args) throws Exception {
		createImage("中华人民共和国",new Font("宋体",Font.BOLD,18),new File("f:/a.png"));
		createImage("中华人民",new Font("黑体",Font.BOLD,30),new File("f:/a1.png"));
		createImage("中华人民共和国",new Font("黑体",Font.PLAIN,24),new File("f:/a2.png"));
	}
	
	//根据str,font的样式以及输出文件目录
	public static void createImage(String str,Font font,File outFile) throws Exception{
	//获取font的样式应用在str上的整个矩形
	  Rectangle2D r=font.getStringBounds(str, new FontRenderContext(AffineTransform.getScaleInstance(1, 1),false,false));
	  int unitHeight=(int)Math.floor(r.getHeight());//获取单个字符的高度
	//获取整个str用了font样式的宽度这里用四舍五入后+1保证宽度绝对能容纳这个字符串作为图片的宽度
	  int width=(int)Math.round(r.getWidth())+1;
	  int height=unitHeight+3;//把单个字符的高度+3保证高度绝对能容纳字符串作为图片的高度
	//创建图片
	  BufferedImage image=new BufferedImage(width,height,BufferedImage.TYPE_INT_BGR);
	  Graphics g=image.getGraphics();
	  g.setColor(Color.WHITE);
	  g.fillRect(0, 0, width, height);//先用白色填充整张图片,也就是背景
	  g.setColor(Color.black);//在换成黑色
	  g.setFont(font);//设置画笔字体
	  g.drawString(str, 0, font.getSize());//画出字符串
	  g.dispose();
	  ImageIO.write(image, "png", outFile);//输出png图片
	}

Java代码生成word文档

package com.cn.bmsoft;

import java.io.BufferedWriter;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.io.Writer;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import freemarker.template.Configuration;
import freemarker.template.Template;
import freemarker.template.TemplateException;

public class WordTest {
	
	private Configuration configuration = null;
	
	public WordTest(){
		configuration = new Configuration();
		configuration.setDefaultEncoding("UTF-8");
	}
	
	public static void main(String[] args) {
		WordTest test = new WordTest();
		test.createWord();
	}
	
	public void createWord(){
		Map dataMap=new HashMap();
		getData(dataMap);
		//configuration.setClassForTemplateLoading(this.getClass(), "/com");  //FTL文件所存在的位置
		Template t=null;
		try {
			configuration.setDirectoryForTemplateLoading(new File("D:\\")); //FTL文件所存在的位置(自己找的解决方案)
			t = configuration.getTemplate("wordModel.ftl"); //文件名
		} catch (IOException e) {
			e.printStackTrace();
		}
		File outFile = new File("f:/outFilessa"+Math.random()*10000+".doc");
		Writer out = null;
		try {
			out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(outFile)));
		} catch (FileNotFoundException e1) {
			e1.printStackTrace();
		}
		 
        try {
			t.process(dataMap, out);
		} catch (TemplateException e) {
			e.printStackTrace();
		} catch (IOException e) {
			e.printStackTrace();
		}
	}

	private void getData(Map dataMap) {
		dataMap.put("nian", "2012");
		dataMap.put("yue", "2");
		dataMap.put("ri", "13");
//		dataMap.put("auditor", "唐鑫");
//		dataMap.put("phone", "13020265912");
//		dataMap.put("weave", "占文涛");
//		dataMap.put("number", 1);
//		dataMap.put("content", "内容"+2);
		
/*		List> list = new ArrayList>();
		for (int i = 0; i < 10; i++) {
			Map map = new HashMap();
			map.put("number", i);
			map.put("content", "内容"+i);
			list.add(map);
		}
		
		
		dataMap.put("list", list);*/
	}
}

Java代码生成pdf文档(需要导入itext的jar包)

import java.awt.Color;
import java.io.FileOutputStream;
import com.lowagie.text.Chapter;
import com.lowagie.text.Document;
import com.lowagie.text.Font;
import com.lowagie.text.FontFactory;
import com.lowagie.text.PageSize;
import com.lowagie.text.Paragraph;
import com.lowagie.text.Section;
import com.lowagie.text.pdf.PdfWriter;
/**
 * 描述:TODO 【JAVA生成PDF】
 
 */
public class Test {

 public static void main(String[] args) {

  //调用第一个方法,向C盘生成一个名字为ITextTest.pdf 的文件
  try {
   writeSimplePdf();
  } 
  catch (Exception e) { e.printStackTrace(); }

  
  //调用第二个方法,向C盘名字为ITextTest.pdf的文件,添加章节。
  try {
   writeCharpter();
  } 
  catch (Exception e) { e.printStackTrace(); }

  
 }
 
 public static void writeSimplePdf() throws Exception {

  // 1.新建document对象
  // 第一个参数是页面大小。接下来的参数分别是左、右、上和下页边距。
  Document document = new Document(PageSize.A4, 50, 50, 50, 50);

  // 2.建立一个书写器(Writer)与document对象关联,通过书写器(Writer)可以将文档写入到磁盘中。
  // 创建 PdfWriter 对象 第一个参数是对文档对象的引用,第二个参数是文件的实际名称,在该名称中还会给出其输出路径。
  PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("F:\\ITextTest.pdf"));

  // 3.打开文档
  document.open();

  // 4.向文档中添加内容
  // 通过 com.lowagie.text.Paragraph 来添加文本。可以用文本及其默认的字体、颜色、大小等等设置来创建一个默认段落
  document.add(new Paragraph("First page of the document."));
  document.add(new Paragraph("Some more text on the  first page with different color and font type.", FontFactory.getFont(FontFactory.COURIER, 14, Font.BOLD, new Color(255, 150, 200))));

  // 5.关闭文档
  document.close();
 }

 /**
  * 添加含有章节的pdf文件
  * 
  * @throws Exception
  */
 public static void writeCharpter() throws Exception {

  // 新建document对象 第一个参数是页面大小。接下来的参数分别是左、右、上和下页边距。
  Document document = new Document(PageSize.A4, 20, 20, 20, 20);

  // 建立一个书写器(Writer)与document对象关联,通过书写器(Writer)可以将文档写入到磁盘中。
  PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("F:\\ITextTest.pdf"));

  // 打开文件
  document.open();

  // 标题
  //document.addTitle("Hello mingri example");

  // 作者
  //document.addAuthor("wolf");

  // 主题
  document.addSubject("This example explains how to add metadata.");
 // document.addKeywords("iText, Hello mingri");
  //document.addCreator("My program using iText");

  // document.newPage();
  // 向文档中添加内容
  //document.add(new Paragraph("\n"));
  //document.add(new Paragraph("\n"));
 // document.add(new Paragraph("\n"));
 // document.add(new Paragraph("\n"));
  ///document.add(new Paragraph("\n"));
  document.add(new Paragraph("中华人民共和国"));
  document.add(new Paragraph("First page of the document."));
  document.add(new Paragraph("First page of the document."));
  document.add(new Paragraph("First page of the document."));
  document.add(new Paragraph("Some more text on the first page with different color and font type.", FontFactory.getFont(FontFactory.defaultEncoding, 10, Font.BOLD, new Color(0, 0, 0))));
  Paragraph title1 = new Paragraph("Chapter 1", FontFactory.getFont(FontFactory.HELVETICA, 18, Font.BOLDITALIC, new Color(0, 0, 255)));

  // 新建章节
  Chapter chapter1 = new Chapter(title1, 1);
  chapter1.setNumberDepth(0);
  Paragraph title11 = new Paragraph("This is Section 1 in Chapter 1", FontFactory.getFont(FontFactory.HELVETICA, 16, Font.BOLD, new Color(255, 0, 0)));
  Section section1 = chapter1.addSection(title11);
  Paragraph someSectionText = new Paragraph("This text comes as part of section 1 of chapter 1.");
  section1.add(someSectionText);
  someSectionText = new Paragraph("Following is a 3 X 2 table.");
  section1.add(someSectionText);
  document.add(chapter1);

  // 关闭文档
  document.close();
 }
 
} 

下载jar的地址:http://download.csdn.net/detail/huiqi110/4468301




你可能感兴趣的:(通过java代码生成图片、word文档、pdf文档)