ISO8583 flows, fields meaning and values

  • 10 November 2017
  • ADM

ISO8583 message flows, data elements values and meanings. Message flows examples, most used data elements and values.


ISO8583 financial transaction message format

  • 23 August 2017
  • ADM

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

  • 27 May 2016
  • ADM

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.


Luhn algorithm implementation in Java

  • 26 January 2017
  • ADM

Luhn algorithm implementation in Java with example for both calculate the check digit and validate the number.


How to create thread pool in Java

  • 05 April 2016
  • ADM

How to create a simple thread pool in Java using ExecutorService, Executors, ThreadPoolExecutor and RejectedExecutionHandler classes.


How to get free disk space in Java

  • 05 April 2016
  • ADM

How to get free disk space in Java using File.getFreeSpace(), File.getTotalSpace() and File.getUsableSpace().