如何将多个文件传递给另一个类?
我正在开发一个应用程序,它首先压缩图像,然后将其转换为 pdf。
我编写的程序单独运行良好,即;它压缩图像,然后在另一个项目中我使用存储图像的路径将其转换为 pdf。
现在我想将这两个代码都放在同一个项目中,我遇到了一个问题,我正在创建一个循环,在该循环中我一个一个地传递路径名。源路径运行良好,但我需要指定动态更改名称的目标路径,这是我面临问题的地方。我附上了下面的代码,请告诉我该怎么做。
System.out.println("before convert");
Conversion cc = new Conversion();
File directory = new File(Success);
File[] files = directory.listFiles();
if(files!=null)
{
for(File f:files){
String path = f.getName();
System.out.println("The Name of file is="+path);
cc.createPdf("path" , "output", true);
System.out.println("the file is ="+output+".pdf");
System.out.println("after convert");
}
}
在上面的代码中,我需要在这里动态更改输出文件名 cc.createPdf("path" , "output", true);