com.anlavn.file.NativeLibrary Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of AL-Library_VN Show documentation
Show all versions of AL-Library_VN Show documentation
Java library for many thing wonderful
package com.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
*/
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()); }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy