Searched refs:tempFile (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/test/sun/misc/URLClassPath/
H A DFileLoaderTest.java34 File tempFile = File.createTempFile("foo", ".txt");
35 tempFile.deleteOnExit();
36 String basestr = tempFile.toURL().toString();
41 if (cl.getResource (tempFile.getName()) == null) {
43 tempFile.toURL().toString());
/openjdk7/jdk/test/java/nio/file/DirectoryStream/
H A DDriveLetter.java48 File tempFile = File.createTempFile("foo", "tmp", new File(here));
52 Path expected = Paths.get(drive).resolve(tempFile.getName());
68 tempFile.delete();
/openjdk7/jdk/test/javax/swing/JFileChooser/6945316/
H A Dbug6945316.java54 final File tempFile = new File("c:\\");
63 ShellFolder.isFileSystemRoot(tempFile);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DMemoryData.java80 File tempFile = TempFiles.createTempFile(prefix, suffix, config.getTempDir());
82 tempFile.deleteOnExit();
84 LOGGER.log(Level.FINE, "Created temp file = {0}", tempFile);
86 dataHead.dataFile = new DataFile(tempFile);
H A DMIMEConfig.java138 File tempFile = (tempDir == null)
141 tempFile.delete();
/openjdk7/jdk/src/share/classes/sun/tools/native2ascii/
H A DMain.java87 File tempFile = null; field in class:Main
182 tempFile.renameTo(outputFile);
243 tempFile = File.createTempFile("_N2A",
246 tempFile.deleteOnExit();
249 output = new FileWriter(tempFile);
251 throw new Exception(formatMsg("err.cannot.write", tempFile.getName()));
295 tempFile = File.createTempFile("_N2A",
298 tempFile.deleteOnExit();
301 output = new FileOutputStream(tempFile);
303 throw new Exception(formatMsg("err.cannot.write", tempFile
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DReadAllStream.java105 private @Nullable File tempFile; field in class:ReadAllStream.FileStream
109 tempFile = File.createTempFile("jaxws",".bin");
110 FileOutputStream fileOut = new FileOutputStream(tempFile);
120 fin = new FileInputStream(tempFile);
137 if (tempFile != null) {
138 tempFile.delete();
/openjdk7/jdk/src/solaris/classes/sun/font/
H A DFcFontConfiguration.java391 File tempFile = Files.createTempFile(dir.toPath(), "fcinfo", null).toFile();
392 FileOutputStream fos = new FileOutputStream(tempFile);
396 boolean renamed = tempFile.renameTo(fcInfoFile);

Completed in 63 milliseconds