Core java
30 JanuaryHow to delete non empty directory in java
In this post, we will see how to delete Directory/Folder which is non empty. You can use java.io.File ‘s delete empy folder but you can not delete it if it is non empty. There are multiple ways to do it. Using java recursion Using Apache common IO Using java recursion: It is very straight forward to […]
30 JanuaryHow to download file from URL in java
In this post, we will see how to download file from URL in java. It can be used when you want to automatically download any file from URL using java. There are many ways to do it and some of them are : Using Java input output stream Using apache common IO Using NIO Java […]
30 JanuaryHow to check if a file exists in Java
It is very easy to check if file exists or not in your file system. You can use java.io.File’s exists() method to check if file exists or not. Java program : [crayon-6a27bdb63b542217741088/] When you run above program, you will get following output: [crayon-6a27bdb63b54c573908431/]
29 JanuaryHow to get size of file in java
In this post, we will see how to get size of file in java. We can directly use java.io.File ‘s length method to get its size in bytes. We can convert it to KB and MB accordingly. [crayon-6a27bdb63bc8b783056247/] When you run above program, you will get following output: [crayon-6a27bdb63bc93794474823/]
29 JanuaryJava get file extension
In this post, we will see how to get extension of file in java. As java.io.File does not provide any direct method for getting extension of file. This is used when you want to process file differently on the basis of its extension. I have worked on a project where I required this utility method. […]
25 JanuaryHow to convert String to Date in java
In this post, we will see how to convert String to Date object in java. It is used when we have formatted String and need to convert it to Date object.You may also check how to convert Date to String Java program: [crayon-6a27bdb63cc0a272183476/] When you run above program, you will get following output: [crayon-6a27bdb63cc13982735945/]
25 JanuaryHow to Convert Date to String in Java
In this post, we will see how to convert date to string in java. It is more of utility which is mostly used while displaying dates in different string formats while generating any pdf or excel reports.You may also check how to convert string to date Java program: [crayon-6a27bdb63d37b312440669/] When you run above program, you […]
09 JanuaryEnergy Casino 30 bónusz beváltása – Lépésről lépésre útmutató
Sok játékosnak vannak kérdései az Energy casino promocios kod kapcsán, mielÅ‘tt befizetné az elsÅ‘ euróját – itt vannak az Å‘szinte válaszok. Ez az útmutató részletesen bemutatja, hogyan léphetsz be a világba, hogyan érvényesÃtheted az energy casino 30 bónuszt, és mire figyelj a játék során. Az energycasino platformján számos lehetÅ‘ség vár, de a biztonságos és felelÅ‘sségteljes […]
15 DecemberHow to find GCD and LCM of two numbers in java
In this post, we will see how to find Greatest common divisor(GCD) and Least Common Multiple(LCM) in java. GCD is calculated using Euclidean algorithm and LCM is calculated using reduction by GCD Eucid algo for calculating GCD is: Lets say , there are two numbers , a and b so GCD of two numbers = […]