()
| 134 | } |
| 135 | |
| 136 | @Override |
| 137 | public long size() throws IOException { |
| 138 | if (!file.isFile()) { |
| 139 | throw new FileNotFoundException(file.toString()); |
| 140 | } |
| 141 | return file.length(); |
| 142 | } |
| 143 | |
| 144 | @Override |
| 145 | public byte[] read() throws IOException { |