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