1 / 6

Introduction to Application Programming

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.

jola
Download Presentation

Introduction to Application Programming

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Introduction toApplication Programming IST 256 Application Programming for Information Systems Xiaozhong Liu

  2. Java What is programming?

  3. 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

  4. 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

  5. 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

  6. 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!"); } }

More Related