Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
DiskLib - Pure Java zero dependency Disk Reader & Disk Writer
#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");
Reply
 


Forum Jump:


Users browsing this thread: 1 Guest(s)

About The Bytecode Club

We're a community focused on Reverse Engineering, we try to target Java/Android but we also include other langauges/platforms. We pride ourselves in supporting and free and open sourced applications.

Website