Searched defs:tempFile (Results 1 - 2 of 2) sorted by relevance

/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/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...]

Completed in 29 milliseconds