()
| 141 | } |
| 142 | |
| 143 | @Override |
| 144 | public long size() throws IOException { |
| 145 | if (!file.isFile()) { |
| 146 | throw new FileNotFoundException(file.toString()); |
| 147 | } |
| 148 | return file.length(); |
| 149 | } |
| 150 | |
| 151 | @Override |
| 152 | public byte[] read() throws IOException { |