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
28 * output data to a File or RandomAccessFile.
35 * The file.
37 RandomAccessFile file;
40 * Instantiates a new FileImageOutputStream with the specified File.
43 * the output File.
45 * if the file not found.
49 public FileImageOutputStream(File f) throws FileNotFoundException, IOException {
62 throw new IllegalArgumentException("file should not be NULL");
64 file = raf;
72 file.write(b);
81 file.write(b, off, len);
88 int rt = file.read();
98 int rt = file.read(b, off, len);
109 return file.length();
119 file.seek(pos);
120 streamPos = file.getFilePointer();
126 file.close();