How to convert String to double in Java

  • 14 October 2016
  • ADM

How to convert String to double in Java using Double.parseDouble and Double.valueOf methods. Simple example provided.


How to convert String to float in Java

  • 13 October 2016
  • ADM

How to convert String to float in Java using Float.parseFloat and Float.valueOf methods. Simple example provided.


How to convert String to long in Java

  • 23 November 2020
  • ADM

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

  • 23 November 2020
  • ADM

How to convert String to int in Java using Integer.parseInt and Integer.valueOf methods. Simple example provided.


How to read and write JSON with json-simple

  • 21 April 2016
  • ADM

How to read and write JSON with json-simple library. Full example how to create an object, write it to a file, read it and use it.


How to create WSDL file with Eclipse

  • 20 May 2016
  • ADM

WSDL is an XML format for describing network services as a set of endpoints operating on messages containing either document-oriented or procedure-oriented information. WSDL stands for Web Services Description Language. The WSDL is an abstract definitions of ports and messages, being separated from the concrete implementation. Using this model to define the service allows the reuse of these definitions and also will allow to implement server and client independently.