80% found this document useful (10 votes)
4K views3 pages

Java Programming and Dynamic Webpage Design

The document discusses Java programming and dynamic webpage design over 6 units. Unit 1 covers Java programming fundamentals like data types, control structures, classes and exceptions. Unit 2 covers Java applets, AWT controls, layout managers and string handling. Unit 3 discusses networking with sockets and JDBC. Unit 4 covers HTML tags for text, images, tables and forms. Unit 5 is about Java servlets for web applications. Unit 6 introduces Java server pages for generating dynamic web content.

Uploaded by

aadi1988
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download as docx, pdf, or txt
80% found this document useful (10 votes)
4K views3 pages

Java Programming and Dynamic Webpage Design

The document discusses Java programming and dynamic webpage design over 6 units. Unit 1 covers Java programming fundamentals like data types, control structures, classes and exceptions. Unit 2 covers Java applets, AWT controls, layout managers and string handling. Unit 3 discusses networking with sockets and JDBC. Unit 4 covers HTML tags for text, images, tables and forms. Unit 5 is about Java servlets for web applications. Unit 6 introduces Java server pages for generating dynamic web content.

Uploaded by

aadi1988
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1/ 3

Java Programming and Dynamic Webpage Design

UNIT-I
Java Programming: Data types, control structured, arrays, strings, and
vector, classes (inheritance, package, exception handling) multithreaded
programming.
UNIT-II
Java applets, AWT controls (Button, Labels, Combo box, list and other
Listeners, menu bar) layout manager, string handling (only main functions)
UNIT-III
Networking (datagram socket and TCP/IP based server socket) event
handling, JDBC: Introduction, Drivers, Establishing Connection, Connection
Pooling.
UNIT-IV
HTML: use of commenting, headers, text styling, images, formatting text
with , special characters, horizontal rules, line breaks, table, forms, image
maps, tags, tags, file formats including image formats.
UNIT-V
Java Servlets: Introduction, HTTP Servlet Basics, The Servlet Lifecycle,
Retrieving Information, Sending HTML Information, Session Tracking,
Database Connectivity
UNIT-VI
Java Server Pages: Introducing Java Server Pages, JSP Overview, Setting
Up the JSP Environment, Generating Dynamic Content, Using Custom Tag
Libraries and the JSP Standard Tag Library, Processing Input and Output.
Introduction

Java is a popular programming language, created in 1995.

It is owned by Oracle, and more than 3 billion devices run Java.

Java is a high-level programming language originally developed by Sun Microsystems and


released in 1995. Java runs on a variety of platforms, such as Windows, Mac OS, and the
various versions of UNIX. This tutorial gives a complete understanding of Java. This
reference will take you through simple and practical approaches while learning Java
Programming language.

It is used for:

 Mobile applications (specially Android apps)


 Desktop applications
 Web applications
 Web servers and application servers
 Games
 Database connection
 And much, much more!

Why to Learn java Programming?


Java is a MUST for students and working professionals to become a great Software
Engineer specially when they are working in Software Development Domain. I will list
down some of the key advantages of learning Java Programming:
 Object Oriented − In Java, everything is an Object. Java can be easily extended
since it is based on the Object model.
 Platform Independent − Unlike many other programming languages including C
and C++, when Java is compiled, it is not compiled into platform specific machine,
rather into platform independent byte code. This byte code is distributed over the
web and interpreted by the Virtual Machine (JVM) on whichever platform it is being
run on.
 Simple − Java is designed to be easy to learn. If you understand the basic concept
of OOP Java, it would be easy to master.
 Secure − With Java's secure feature it enables to develop virus-free, tamper-free
systems. Authentication techniques are based on public-key encryption.
 Architecture-neutral − Java compiler generates an architecture-neutral object file
format, which makes the compiled code executable on many processors, with the
presence of Java runtime system.
 Portable − Being architecture-neutral and having no implementation dependent
aspects of the specification makes Java portable. Compiler in Java is written in
ANSI C with a clean portability boundary, which is a POSIX subset.
 Robust − Java makes an effort to eliminate error prone situations by emphasizing
mainly on compile time error checking and runtime checking.
History
Java was started as a project called "Oak" by James Gosling in June 1991. Gosling's
goals were to implement a virtual machine and a language that had a familiar C-like
notation but with greater uniformity and simplicity than C/C++. The first public
implementation was Java 1.0 in 1995. It made the promise of "Write Once, Run
Anywhere", with free runtimes on popular platforms. It was fairly secure and its security
was configurable, allowing for network and file access to be limited. The major web
browsers soon incorporated it into their standard configurations in a secure "applet"
configuration. popular quickly. New versions for large and small platforms (J2EE and
J2ME) soon were designed with the advent of "Java 2". Sun has not announced any plans
for a "Java 3".

In 1997, Sun approached the ISO/IEC JTC1 standards body and later the Ecma
International to formalize Java, but it soon withdrew from the process. Java remains a
proprietary de facto standard that is controlled through the Java Community Process. Sun
makes most of its Java implementations available without charge, with revenue being
generated by specialized products such as the Java Enterprise System. Sun distinguishes
between its Software Development Kit (SDK) and Runtime Environment (JRE) which is a
subset of the SDK, the primary distinction being that in the JRE the compiler is not
present.

You might also like