Lines Matching refs:tempFile
461 File tempFile;
466 tempFile = new File(dir, entry.getName());
468 tempFile.mkdirs();
472 try (FileOutputStream fos = new FileOutputStream(tempFile)) {
736 File tempFile = File.createTempFile("tempname", ".tmp");
737 try (FileOutputStream fop = new FileOutputStream(tempFile)) {
745 ... // 对tempFile进行其他操作
756 File tempFile = File.createTempFile("tempname", ".tmp");
757 try (FileOutputStream fop = new FileOutputStream(tempFile)) {
765 ... // 对tempFile进行其他操作
767 if (!tempFile.delete()) {