Day: April 28, 2021

Learn Java by Example: Java Program to convert string type variables into int

Java Program to convert string type variables into int In this program, we will learn to convert the String type variables into the integer (int) in Java.   Example 1: Java Program to Convert string to int using parseInt() class Main{ public static void main(String[] args){ // create string variables String str1 = “23”; String …

Learn Java by Example: Java Program to convert string type variables into boolean

Java Program to convert string type variables into boolean In this program, we will learn to convert the String type variables into boolean in Java.   Example 1: Convert string to boolean using parseBoolean() class Main{ public static void main(String[] args){ // create string variables String str1 = “true”; String str2 = “false”; // convert …

Learn Java by Example: Java Program to convert boolean variables into string

Java Program to convert boolean variables into string In this program, we will learn to convert the boolean type variables into string in Java.   Example 1: Convert boolean to string using valueOf() class Main{ public static void main(String[] args){ // create boolean variables boolean booleanValue1 = true; boolean booleanValue2 = false; // convert boolean …

Learn Java by Example: Java Program to Copy File

Java Program to Copy File In this tutorial, we will learn to copy files in Java.   The Java File class doesn’t provide any method to copy one file to another. However, we can use Java I/O Streams to read content from one file and write to another. Example: Copy files using i/o streams import java.io.FileInputStream; import java.io.FileOutputStream; class …