Java Tutorial

Java is object-oriented, distributed, secure, multi-threaded, and portable programming language.  Java is a general purpose programming language intended to let the Java developers write once, run anywhere (WORA). WORA means that the compiled Java code(Java bytecode) can run on many platforms that support Java without the need to recompile the Java source code. This allows Java to be cross-platform and platform-independent.

 

Java Program Execution Java Tutorials

Java Platform

https://www.testingdocs.com/java-platform-overview/

Java Download

https://www.testingdocs.com/download-and-installing-java-jdk/

Java Editions

https://www.testingdocs.com/java-platform-editions/

First Java Application

https://www.testingdocs.com/creating-first-java-application/

Popular IDEs

https://www.testingdocs.com/popular-java-ides/

OOPS Concepts

https://www.testingdocs.com/object-oriented-principles/

Main method

https://www.testingdocs.com/the-java-main-method/

Hello World

https://www.testingdocs.com/first-java-example-program/

Java Comments

https://www.testingdocs.com/types-of-java-comments/

Data Types

https://www.testingdocs.com/data-types-in-java/

Java Variables

https://www.testingdocs.com/types-of-variables-in-java/

Program Structure

https://www.testingdocs.com/java-program-structure/

Java Access Modifiers

https://www.testingdocs.com/access-modifiers-public-private-protected/

Class and Object

https://www.testingdocs.com/working-with-classes-and-objects-in-java/

Setters and Getters

https://www.testingdocs.com/accessor-and-mutator-methods-in-java/

Java Interface

https://www.testingdocs.com/java-interface-with-examples/

Abstract Class

https://www.testingdocs.com/abstract-class-in-java/

 

Java Testing Tools

https://www.testingdocs.com/java-testing-tools/

JDBC Tutorials

JDBC stands for Java Database Connectivity. JDBC API defines classes and interfaces that allows Java applications to interact with databases. In the following tutorials, we will learn to execute SQL statements from Java programs using JDBC API.

The basic steps to execute SQL statement with JDBC API are:

  • Configure Java development environment. ( JDK Install, IDE setup etc)
  • Create a Java project and class
  • Download and Install JDBC Driver. Setup classpath or build path for the driver.
  • Load suitable JDBC Driver
  • Establish a database connection
  • Create an SQL statement to execute
  • Execute the SQL statement
  • Process the query ResultSet
  • Close the database connection

 

JDBC API TestingDocs

Java Database Connectivity API 

https://www.testingdocs.com/jdbc-tutorials/

 

More information on Java:

https://www.oracle.com/java/