newszine

How to convert python list to string

6 years ago Lalit Bhagtani 0
In this tutorial, we will learn about converting python list object to string. We can use String’s join method for converting List object to String. Syntax : < String Object >.join(< Iterable Object >) This method returns a string, which is a concatenation of all the strings in a list. The separator between the elements of the Read More

How to convert python tuple to string

6 years ago Lalit Bhagtani 0
In this tutorial, we will learn about converting python tuple to string object. For converting Tuple object to String, we will use String’s join method. Syntax : < String Object >.join(< Iterable Object >) This method returns a string, which is a concatenation of all the strings in a tuple ( iterable ). The separator between the Read More

How to minify and pretty print XML in JavaScript

7 years ago Lalit Bhagtani 0
How to minify and pretty print XML in JavaScript In this tutorial, we will learn how to minify and pretty print XML in JavaScript. We will use vkbeautify java script plugin, it is a small and simple java script plugin to beautify XML, JSON or CSS text. Sample :- XML for book type :- <Book> <id>01</id> <language>Java</language> Read More

How to minify and pretty print JSON in JavaScript

7 years ago Lalit Bhagtani 0
How to minify and pretty print JSON in JavaScript :-  In this tutorial, we will learn how to minify and pretty print JSON in JavaScript. Java Script provide us a method JSON.stringify(), which can convert Java Script value or object to JSON string. Method :-    JSON.stringify ( value])  This method takes three Read More

JavaScript – How to parse JSON in javascript

7 years ago Lalit Bhagtani 0
How to parse JSON in JavaScript :-  If you had worked on angularJS or any other modern java script framework, then you would have noticed that, now days restful web services are used to communicate ( Getting data or Posting data ) with the server. In restful web services, JSON format is used ( mostly Read More

Download file from Internet in Java using apache commons-io

7 years ago Lalit Bhagtani 0
Download file from Internet in Java :- In this tutorial, we will learn to download file from Internet in java using apache’s commons-io library. Let’s see an implementation using commons-io library with the help of an example :- Apache Commons-IO :-  In case of commons-io library, we will call copyURLToFile() method of FileUtils class by passing URL Read More

Download file from URL in Java using java.io & java.nio

7 years ago Lalit Bhagtani 1
Download file from URL in Java :- In this tutorial, we will learn to download file from URL in java. There are two different API’s in Java, which can be used for this purpose, java.io & java.nio. Let’s see an implementation using both API’s with the help of an example  :- Java IO :-  In Read More

Convert XMLGregorianCalendar to Date Object

7 years ago Lalit Bhagtani 0
XMLGregorianCalendar to Date Object :- In this tutorial, we will learn to convert XMLGregorianCalendar to Date Object. If you had worked on a project which consume or publish SOAP web services, then you would had faced a problem in converting XMLGregorianCalendar to Date Object and vice versa. Let’s see an implementation with the help of Read More

Convert Date to XMLGregorianCalendar Object

7 years ago Lalit Bhagtani 0
Date to XMLGregorianCalendar Object :- In this tutorial, we will learn to convert Date to XMLGregorianCalendar Object. If you had worked on consuming or publishing SOAP web services, then you would had faced the problem in converting Date to XMLGregorianCalendar Object and vice versa. Let’s see an implementation with the help of an example  :- Example Read More

How to read and write JSON in Java using org.json

7 years ago Lalit Bhagtani 0
How to read and write JSON in Java :- If you had worked on restful web services, then you would have faced a problem of reading and writing JSON in java. JSON stands for JavaScript Object Notation, it is language independent, easy to understand, lightweight data-interchange format.  Let’s see how to read and write JSON in java Read More