如何设置存储PDF的默认路径

时间:2019-01-31 08:18:31

标签: java spring-boot itext

我必须将此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; }
}

2 个答案:

答案 0 :(得分:2)

如果您有IOUtils(Apache Commons io),则可以使用

IOUtils.copy(byteArrayInputStream, new FileOutputStream("/home/gnanaseelan/Documents/myfile.pdf"));

MySQL select 10 random rows from 600K rows fast

答案 1 :(得分:0)

通过将字符串值(代表创建PDF的路径)传递给其构造函数来实例化PdfWriter类,如下所示。

// Creating a PdfWriter 
String path = "C:/itextExamples/fonts.pdf"; 
PdfWriter writer = new PdfWriter(path);