All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.anlavn.file.NativeLibrary Maven / Gradle / Ivy

There is a newer version: 6.70.10.2
Show newest version
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