Autoboxing and Unboxing in Java
In Java, autoboxing is the automatic conversion between the primitive types and their corresponding object wrapper classes. Unboxing is the other way around.
How to convert String to long in Java
How to convert String to long in Java using Long.parseLong and Long.valueOf methods. Simple example provided.
How to convert String to int in Java
How to convert String to int in Java using Integer.parseInt and Integer.valueOf methods. Simple example provided.
ISO8583 financial transaction message format
Introduction to ISO8583 financial transaction message format. Parts: message type indicator, one or more bitmaps and data elements.
How to read CSV file in Java
How to parse CSV file in Java and display all the value.The solution treats the case when a column contains the delimiter and the double quote character.
Split a string and loop in SQL Server
How to split a string and loop it's values in Microsoft SQL Server. Simple solution used to insert data into tables.