(String path)
| 135 | } |
| 136 | |
| 137 | public static File local(String path) { |
| 138 | path = path.replace("file:/", ""); |
| 139 | File file = new File(root(), path); |
| 140 | return file.exists() ? file : new File(path); |
| 141 | } |
| 142 | |
| 143 | public static String read(File file) { |
| 144 | try { |