Credit for EmailmeForm
Read More
Java Source Code
There is an SMS Program source code, it's free. You may download in http://seno008.blogspot.com. There are also an SMS Gateway source code. You may download it 100% free. No registration.
Posted by Once at 11:38 PM 0 comments
Generally, java class format seems below :
import package;
class classsname{
Posted by Once at 10:01 PM 5 comments
Before we begin make java code, we must install Java 2 Standard Development Kit. I am using j2sdk1.4.2. You can use the newer one. You may download it from java.sun.com. To learn java installation steps you may browse java.sun.com or other sites.
Now, open editor for java such as JCreator Pro or others. You also may type it in Notepad. Be careful when you type, java is case sensitive. Type code below.
I wanna explain Helloword.java
Notes:
Sign // is single line comment, for multi line comment use /* ........ */. Comments wouldn't be compiled.
Posted by Once at 6:40 AM 0 comments