Attempt to extract a native library from the current resource path, using the current thread context class loader. @param name Base name of native library to extract. May also be an absolute resource path (i.e. starts with "/"), in which case the no transformations of the library name are performed
(String name)
| 1144 | * @throws IOException if resource not found |
| 1145 | */ |
| 1146 | public static File extractFromResourcePath(String name) throws IOException { |
| 1147 | return extractFromResourcePath(name, null); |
| 1148 | } |
| 1149 | |
| 1150 | /** Attempt to extract a native library from the resource path using the |
| 1151 | * given class loader. |