anlavn.file.NativeLibrary Maven / Gradle / Ivy
package anlavn.file;
// Make By Bình An || AnLaVN || KatoVN
import java.io.File;
/**Lớp NativeLibrary hỗ trợ tải các thư viện động.
* @author AnLaVN - https://github.com/AnLaVN
*/
public class NativeLibrary {
/**Sử dụng phương pháp này để tải thư viện từ vị trí cụ thể.
* @param filePath là vị trí cụ thể của tệp thư viện.
Ví dụ: "package/File.dll".
*/
public static final void load(String filePath){ System.load(new File(filePath).getAbsolutePath()); }
}