Currently browsing category

Real Methods

Unzip a .jar file in Java program

Here is a method that can unzip/unjar .jar file and extract files inside to a destination directory. There are mainly 2 steps: …

Java Method to Shuffle an Array

How to shuffle an array in Java? There are two approaches to shuffle an int array(randomizes the order of the elements in …

Sort content in a txt file

If you have a file with come words or terms on each line, you may want to sort it. Java Arrays.sort is …

Convert java jar file to exe

Using eclipse or Netbeans, you can get executable jar files, but this jar file can be launched by using command line. But …

Using Java to read web page

The following is the code for reading html content of a web page. Using java to read web page is different from …