Lines Matching full:file
3 * contributor license agreements. See the NOTICE file distributed with
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
24 * which reads from its InputStream and uses a temporary file as a cache.
36 * The file.
38 private File file;
47 * InputStream and using the specified File as its cache directory.
52 * the cache directory where the cache file will be created.
56 public FileCacheImageInputStream(InputStream stream, File cacheDir) throws IOException {
63 file = File.createTempFile(FileCacheImageOutputStream.IIO_TEMP_FILE_PREFIX, null,
65 file.deleteOnExit();
70 raf = new RandomAccessFile(file, "rw");
135 file.delete();