我必须将此pdf文件存储在此位置的“ / home / gnanaseelan / Documents / myfile”中。
public class Customer
{
public int Id { get; set; }
public int Resp_Id { get; set; }
public string Name { get; set; }
}
public class Billing
{
public int Id { get; set; }
public double? Day30 { get; set; }
public double? Day60 { get; set; }
}
答案 0 :(得分:2)
如果您有IOUtils(Apache Commons io),则可以使用
IOUtils.copy(byteArrayInputStream, new FileOutputStream("/home/gnanaseelan/Documents/myfile.pdf"));
答案 1 :(得分:0)
通过将字符串值(代表创建PDF的路径)传递给其构造函数来实例化PdfWriter类,如下所示。
// Creating a PdfWriter
String path = "C:/itextExamples/fonts.pdf";
PdfWriter writer = new PdfWriter(path);