java中Itext.jar中根據html產生Word檔案(包含圖片)

來源:互聯網
上載者:User

 

import java.io.FileOutputStream;  
import java.io.OutputStream;  
import java.io.StringReader;  
import java.util.List;  
  
import com.lowagie.text.Document;  
import com.lowagie.text.PageSize;  
import com.lowagie.text.Paragraph;  
import com.lowagie.text.html.simpleparser.HTMLWorker;  
import com.lowagie.text.html.simpleparser.StyleSheet;  
import com.lowagie.text.rtf.RtfWriter2;  
  
public class ItextCreateRTF

{  
    public static void main(String[] args) throws Exception

   {  
        OutputStream out = new FileOutputStream("c://a.doc");  
        Document document = new Document(PageSize.A4);  
        RtfWriter2.getInstance(document, out);  
        document.open();  
        Paragraph context = new Paragraph();  
        String htmlContent = "<img src='http://localhost:8081/project/Image/a.jpg'/>";   

        StyleSheet ss = new StyleSheet();  
        List htmlList = HTMLWorker.parseToList(new StringReader(htmlContent),
ss);  
        for (int i = ; i < htmlList.size(); i++)

        {  
            com.lowagie.text.Element e = (com.lowagie.text.Element) htmlList.get(i);  
            context.add(e);  
        }  
        document.add(context);  
        document.close();  
        System.out.println("ok");  
    }  
}  

 

htmlContent就是需要轉化成word文檔的html內容。可以是圖片,也可以是其他任何html內容。它會將html標籤解析為格式。原帖地址裡有更詳細的對圖片的操作。

 

原帖地址:http://af8991.iteye.com/blog/853107

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.