有没有办法将新的iText生成的PDF直接发送到打印机?最好是用同样的方法生成它并将其保存到光盘?
答案 0 :(得分:1)
我尝试过,在将文件保存到磁盘后,此工作正常。
import com.lowagie.tools.Executable;
try{
Executable ex = new Executable();
ex.openDocument(fileName);
ex.printDocument(fileName);
}catch(IOException e){
e.printStackTrace();
}
有关详细信息,请参阅此Daniweb forum conversation。