资 源 简 介
Java coding can easily become very complex compared to real task at hand. It should not take more than 1 row to read a file. Xml parsing and constructing should be trivial, and so on.
There are dozens of simple things that are over complicated in Java. Source code becomes easily unreadable and hard to follow.
This is a simple and small utility library that brings some simplicity back to everyday Java coding. Have fun !
public void hello() { System.out.println("Wonderful that I can write System.out.println for getting output");}
Jugile util in Action
Read and write a file
Blob b = new Blob("data/image1.png"); b.write("data/image1-copy.png"); Blob b2 = new Blob("readme.txt"); for (String line : b2.getLines()) print("line: " + line); b2.append("new line at end"); b2.write("readme2.txt");
Simple Proxy for java reflectio