Archive

Archive for the ‘Java’ Category

Develop High Transaction Web Applications with Java MySQL & NetBeans

January 23rd, 2011

This entry is a brief tutorial on how to develop high transactional web application. I will be looking at how to develop a high transactional application while maintaining data integrityFor the purpose of keeping this entry simple, I will be using some RAD tools, the NetBeans IDE, to generate most of the code.

Read more…

Java

Future of Java Technology

January 17th, 2011

Future of Java Technology

When Java was developed initially as OAK even its developers were not sure in which direction the technology will grow. And actually Java has taken an unexpected turn around as a development technology. It started its journey with embedded applications but people found it somewhat slow when compare to C++. Java made foray into web in the form of applets and ruled the world for sometime. But then came enterprise era with crusade of .NET and J2EE. In this article let us examine possible directions where there are chances Java will grow as development technology. Read more…

Java ,

What is J2ME?

August 8th, 2010

J2ME is the short form for Java 2 Micro Edition. J2ME is meant for tiny devices such as mobile phones, TV set top boxes, Vehicle telematics, pagers, PDAs etc.

Read more…

Java ME

Read Write Lock Test

July 27th, 2010

/*

Software Architecture Design Patterns in Java
by Partha Kuchana

Auerbach Publications

Read more...

Java

Philosophers

July 27th, 2010

DiningPhilosophers.java
PHP Code:
import java.applet.*;
import java.awt.*;

/**
* The class DiningPhilosophers demonstrates the problem of the dining
* philosophers.
* @author Stephan Fischli
* @version 1.1
*/
public class DiningPhilosophers extends Applet
{
/**
* The width of the applet.
*/
private int width = 460;

Read more…

Java

DateExample.java

July 9th, 2010
// -----------------------------------------------------------------------------
// DateExample.java
// -----------------------------------------------------------------------------

 Read more...

Java SE