Skip to content

LangYa466/FastIO

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FastIO

超轻量高效的文件IO库 只支持Windows (x64) 用C++写的 (JNI)

使用 maven/gradle 导入

快速开始

    public static void main(String[] args) {
        byte[] data = FastIO.load("file.txt");
        if (data != null) {
            System.out.println("File Loaded. Data length: " + data.length);
        }

        boolean result = FastIO.save("newFile.txt", "Hello, World!".getBytes());
        System.out.println("File Saved: " + result);
    }

About

高效的文件IO库

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published