Java Articles

Java URL to File

JAVA – How to convert URL to File

In this tutorial, we will see "How to convert a URL to File in Java ?" While converting java.net.URL to java.io.File, we are first converting URL to a URI and then URI to a File. Convert URL to File...

JAVA – How to convert File to URL

In this tutorial, we will see "How to convert a File to URL in Java ?" While converting java.io.File to java.net.URL, we are first converting File to a URI and then URI to a URL. Convert File to URL...
Filter a List in Java - Unique ways to filter an ArrayList - Techndeck

How to Filter a List in Java | Unique ways to Filter ArrayList

In this tutorial, we will see "How to Filter a List in Java?". We are going to use various techniques to filter an ArrayList like using Loops, Java 8 Streams and more. You can pick any approach to use in your projects. All approaches have their own advantages. Unique...
Arraylist ListIterator in Java with Examples - Techndeck

ArrayList ListIterator in Java with Examples

In this tutorial, we are going to learn how to Iterate an ArrayList using 'ListIterator' in Java with example(s).The listIterator() method is part of java.util class (specifically from java.util.ArrayList). It allows to traverse the list in either direction forward or...