Konloch   02-17-2023, 03:56 PM
#1
About: DiskLib is an easy to use zero dependency Disk Writer & Disk Reader with built in GZIP support for Java.
License: MIT License
Source: https://konloch.com/DiskLib/
Download Jar: https://konloch.com/DiskLib/releases/
Add as maven dependency:
Code:
<dependency>
  <groupId>com.konloch</groupId>
  <artifactId>DiskLib</artifactId>
  <version>1.0.1</version>
</dependency>

Write new file to disk / overwrite existing file
Code:
DiskReader.write("hello.txt", "Hello ");

Append to existing file
Code:
DiskReader.append("hello.txt", "World");

Reading Strings from disk
Code:
ArrayList<String> lines = DiskReader.read("hello.txt");

Reading String Arrays from disk
Code:
String[] lines = DiskReader.readLines("hello.txt");

Reading Bytes from disk
Code:
byte[] bytes = DiskReader.readBytes("hello.txt");
This post was last modified: 03-04-2023, 06:22 AM by Konloch.
  
Users browsing this thread: 1 Guest(s)
Konloch Software - Bytecode Viewer - Reverse Engineering Forum
Copyright © 2014-2025 The Bytecode Club. Powered By MyBB.
CC0 Unless Specified Otherwise.