The Bytecode Club

Full Version: DiskLib - Pure Java zero dependency Disk Reader & Disk Writer
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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");