Java Development

Check out the Development tag for another article on Java.

While most of this site is about exploiting Java, remember that exploiting Java sometimes requires advanced knowledge of Java. Let's take a quick look at a snippet of code.

 class j4vaThrow { void printJohn() { String name = "Peter"; String age = "48"; ...
Read more »

Java File.delete

Here we have another easy Java tutorial. You want to delete a file. Easy, right?
 import java.io.File; class j4vaDelete { void deleteJohn() { String filename="john.txt"; File file = new File(filename); if(file.exists()){ file.delete(); } } // public public static void main(String [] args) { j4vaDelete a = new j4vaDelete(); a.deleteJohn(); } } 

Well, it never is just that ... Read more »