Wednesday, August 5, 2009

Java - Tutorial Links and Start up

Useful Java tutorial links

http://www.tutorialspoint.com/java/java_basic_operators.htm - Tutorial point start up. If you already familiar in Object Oriented its easy to start with this link.

http://download-llnw.oracle.com/javase/tutorial/java/concepts/object.html

http://www.planetpdf.com/developer/article.asp?ContentID=6632

http://java.sun.com/docs/codeconv/html/CodeConvTOC.doc.html

http://java.dzone.com/videos/brief-history-java-and-jdbc - Write once run anywhere

http://java.sun.com/docs/books/tutorial/java/index.html
http://java.sun.com/docs/books/tutorial/

About Ant - Another Neat Tool :
http://codefeed.com/tutorial/ant_intro.html
http://en.wikipedia.org/wiki/Apache_Ant
(Ant - Another Neat Tool - build processing tool.

JAR - Java ARchive. (Archive the class files into one JAR File)
Operator Precedence easy - BODMAS - Brackets of , division, multiplication, addition, subtraction

set up java - This link is internal for Operative.
http://tech.internal.operative.com/node/926
http://tech.internal.operative.com/node/1111 -

Install java in linux :
sudo apt-get install sun-java6-jdk mysql-server-5.1 ubuntu-restricted-extras libmysql-java libsvn-java

In java for boolean field getter / setter the getter, setter should be like below. (column : is_status)


public boolean isIsStatus() {
return isStatus;
}

public void setIsStatus(boolean isStatus) {
this.isStatus = isStatus;
}

No comments :

// Below script tag for SyntaxHighLighter