Categories
Java

JUnitConvert – Units of Measure Converter Miscellaneous Applets Java

JUnitConvert – Units of Measure Converter JUnitConv is an universal Units of Measure Converter built as a Java Applet, it supports an unlimited number of Units Categories, Units of Measure and Multiplier Prefixes that could be customized using external text files. The default configuration data files contains 580 basic units of measure definitions divided in 31 categories and 27 multiplier prefixes for a total of 15660 composed units.

Categories
Java

What do you understand by Synchronization Frequently Asked Questions General Java Tutorials & Tips Java

What do you understand by Synchronization Synchronization is a process of controlling the access of shared resources by the multiple threads in such a manner that only one thread can access one resource at a time. In non synchronized multithreaded application, it is possible for one thread to modify a shared object while another thread is in the process of using or updating the object’s value. Synchronization prevents such type of data corruption.

Categories
Java

What is Polymorphism Frequently Asked Questions General Java Tutorials & Tips Java

What is Polymorphism Polymorphism means any forms. In OOPS, it refers to the capability of objects to react differently to the same method. Polymorphism can be implemented in the Java language in the form of multiple methods having the same name. Java code uses a late-binding technique to support polymorphism; the method to be invoked is decided at runtime.

Categories
Java

Java DB (Derby) – DML Statements Database-Related Tutorials & Tips Java

Java DB (Derby) – DML Statements This Tutorial provides tutorial notes on executing DML statements with Java DB (Derby) JDBC Driver. Topics include inserting, updating and deleting data rows in existing tables; creating IDENTITY columns; handling date and timestamp values.

Categories
Java

Java Tool Tutorials – The Java Class File Disassembler Miscellaneous Tutorials & Tips Java

Java Tool Tutorials – The Java Class File Disassembler This Tutorial provides tutorial notes on ‘javap’, the Java class file disassember. Topics include list of ‘javap’ command options, showing public variables and methods, showing private variables and methods, disassembling bytecode to JVM assembler code.

Categories
Java

JDBC Tutorial – Installing and Running Java DB Development Tutorials & Tips Java

JDBC Tutorial – Installing and Running Java DB This Tutorial provides tutorial notes on downloading, installing and setting up Java DB (Derby) server. Topics include downloading and installing Java DB 10.2.2; verifying Java DB execution environment; running Java DB in Network Server mode; using ‘ij’ to create database and tables.

Categories
Java

JDBC DataSource Objects Database-Related Tutorials & Tips Java

JDBC DataSource Objects This article provides tutorial notes on using DataSource objects and JNDI to connect Java DB (Derby) Database. Topics include creating connections with ClientDataSource objects directly without JNDI; downloading and installing JNDI File System Service Provider; Binding ClientDataSource objects to JNDI names; Looking up ClientDataSource objects through JNDI.

Categories
Java

Derby (Java DB) JDBC Driver Database-Related Tutorials & Tips Java

Derby (Java DB) JDBC Driver This article provides tutorial notes on the JDBC driver for Java DB (Derby) produced by Apache. Topics include loading JDBC driver classes; connecting Derby Network Server; getting JDBC driver information; creating tables and running queries through the Derby JDBC driver.

Categories
Java

Connecting MS Access Database with JDBC-OBDC Bridge Driver Database-Related Tutorials & Tips Java

Connecting MS Access Database with JDBC-OBDC Bridge Driver Tutorials on using the JDBC-ODBC Bridge driver with MS Access database. Topics include creating MS Access database file; creating DSN for MS Access database files; inserting rows to and retrieving rows from Access database.

Categories
Java

Understanding and Using JSP Sessions Cookies & Sessions JSP & Servlets Tutorials & Tips Java

Understanding and Using JSP Sessions This tutorial helps you to understand: What is a session? How a JSP server uses cookies to pass session ID? How to pass values in session objects? How to debug JSP session objects?