我将文件存储在一个 api 中,并尝试通过传递文件名作为参数从另一个 api 检索它。如何实现?
String path = System.getProperty("java.io.tmpdir"); File file = File.createTempFile("abc_", ".xls", new File(path));
XSSFWorkbook 工作簿 = new XSSFWorkbook();
try (FileOutputStream outputStream = new FileOutputStream(file)) { workbook.write(outputStream); 赶上(异常 e){}
现在,我如何使用文件名从 /tmp 检索文件?