Posts Tagged ‘Java’

A circular linked list in Java

Written on December 3rd, 2009 by Thorno shouts

I was helping a friend of mine with her work today, and we came across with a requirement that there are few players in the room we need to know [...]

Filed under Programming Tags:

File Reading in Java and Scala

Written on October 1st, 2009 by Thorone shout

Today we are going to look at reading files in Java and how to do the same thing in Scala.
This is normally how we read files in Java.First we open [...]

Filed under Programming Tags:,

PHP communicate with Java using JSON – Unicode Version

Written on September 28th, 2009 by Thor2 shouts

JSON is one of the most popular message exchange format nowadays used in web application.Most of the time,we used JSON as a communication message format between Javascript and Server side [...]

Filed under Programming Tags:, ,

Say hello to Java and Scala

Written on August 30th, 2009 by Thorno shouts

Let’s write a legendary “Hello world” program in both Java and Scala language.
This is how we do in Java.

public class Hello {
public static void main(String[] args) {
  System.out.println("Hello world");
}
}
and [...]

Filed under Programming Tags:, ,