80 likes | 257 Views
Introduction to Application Programming. IST 256 Application Programming for Information Systems Xiaozhong Liu. Java. What is programming?. Java is a programming language originally developed by James Gosling at Sun Microsystems and released in 1995. Java.
E N D
Introduction toApplication Programming IST 256 Application Programming for Information Systems Xiaozhong Liu
Java What is programming?
Java is a programming language originally developed by James Gosling at Sun Microsystems and released in 1995 Java Object-Oriented Programming (OOP) Object Output Input Process
The Java Development Kit (JDK) is a Sun Microsystems product aimed at Java developers. Since the introduction of Java, it has been by far the most widely used Java SDK. Java Development Kit (JDK) • Download JDK (Java Development Kit) at: http://java.sun.com/javase/downloads/widget/jdk6.jsp
The Java Development Kit (JDK) is a Sun Microsystems product aimed at Java developers. Since the introduction of Java, it has been by far the most widely used Java SDK. NetBeans (Java) • Download NetBeans (Java) at: • http://netbeans.org/downloads/start.html?platform=windows&lang=en&option=javase&version=6.8
NetBeans 1st test public class Main { /** * @paramargs the command line arguments */ public static void main(String[] args) { System.out.println("Hello world!"); System.out.println("Hello IST 256!"); } }