Saturday, December 12, 2009

This was my first hand on android application


The development with the the android is very easy as it uses java for application development.

Friday, October 9, 2009

My first attempt to develop a game in J2ME

Java is really powerfully and flexible language to program a wide and diversified platform. From high end business server to low end mobile devices every thing come under the domain of Java. The view is just a grin of sand which I have got. This video shows a MIDP application for a mobile device which runs on Java Micro Edition platform. This is my first attempt to program a simple game example to get started in Java Micro Edition programming. And I found it very flexible because the Java library provide high level interface through its Api's which makes it very easy to program without worrying about the low level details of mobile devices.

Sunday, May 24, 2009

Hibernate makes the java programmer life easy

   Hibernate is really amazing framework for the Object Relational Mapping(ORM) of persistance in java programs. Hibernate maps the table in a datable to the Java Beans to give the programmer home like feeling. Java Beans are simple (Plain Old Java Object)POJO. Programmer using hibernate need not learn about the database deeply but an overview is enough for them to program. Programer work with the POJO and not with the database directly so it becomes every easy for him to handle the databases. Using Hibernate increases:
1) Maintainablity
2) Extensibility
3) Simplicity
 Hibernate vanishes the nightmare of long and complex database program for programer. Hibernate shorten the code and make it easy to handle.