返回列表 发帖

咯咯咯http://www.codeproject.com/KB/files/imagetoPDF.aspx

整合在java里面也简单,只要一个用Runtime.getRuntime().exec()就行,如下:
package kissjava.pdf;
/** *//**
*@author kissjava;
*/

import java.io.IOException;

public class PDFToSWF {
    public static void main(String[] args) throws IOException{
        Process process = Runtime.getRuntime().exec("d:\\Program Files\\SWFTools\\pdf2swf.exe -o \"e:\\test.swf\"  -t \"e:\\flexBinding.pdf\"");
        System.out.println("sucess!!!");
    }
}
!qqconnect:connect_viewthread_share_title!: !qqconnect:connect_viewthread_share_to_qzone!!qqconnect:connect_viewthread_share_to_qzone! !qqconnect:connect_viewthread_share_to_weibo!!qqconnect:connect_viewthread_share_to_weibo! !qqconnect:connect_viewthread_share_to_pengyou!!qqconnect:connect_viewthread_share_to_pengyou!

返回列表