Practice Exercises Java - Learn to program performing exercises with Java

Practice Exercises Java

Learn to program performing exercises with Java

12 Lessons Java with the Solutions - 228 Exercises Java with the solutions
For Beginners, Intermediates and Advanceds


App Practice Exercises Java

The human knowledge belongs to the world
¡The infomation should be free!

Exercises Java with Examples-
Practice Exercises Java 4,5 5 302940

C# Programming Course New

Beginners, Intermediates, Advances

This FREE C# programming course! It covers all the aspects necessary for programming in C# up to the present.

Watch this!

Java Programming Course New

Beginners, Intermediates, Advances

This FREE Java programming course! It covers all the aspects necessary for programming in Java up to the present.

Watch this!

VB.Net Programming Course New

Beginners, Intermediates, Advances

This FREE VB.Net programming course! It covers all the aspects necessary for programming in VB.Net up to the present.

Watch this!

File comparer - Practice Exercises Java


Lesson 8:

File management


Exercise 8.31:

File comparer


Objetive:

Create a Java program to tell if two files (of any kind) are identical (have the same content).


Source Code:


package FileComparer;
import java.util.*;

public class Main
{
	public static void main(String[] args)
	{
		boolean equal = true;

		FileStream myFile1;
		byte[] dataFile1;
		FileStream myFile2;
		byte[] dataFile2;

		System.out.print("Enter the name of file1: ");
		String fileName1 = new Scanner(System.in).nextLine();

		System.out.print("Enter the name of file2: ");
		String fileName2 = new Scanner(System.in).nextLine();

		if ((!(new java.io.File(fileName1)).isFile()) || (!(new java.io.File(fileName2)).isFile()))
		{
			System.out.println("The file 1 or file 2 not exists!!!");
			return;
		}

		try
		{
			myFile1 = File.OpenRead(fileName1);
			dataFile1 = new byte[myFile1.getLength()];
			myFile1.Read(dataFile1, 0, (int)myFile1.getLength());
			myFile1.Close();

			myFile2 = File.OpenRead(fileName2);
			dataFile2 = new byte[myFile2.getLength()];
			myFile2.Read(dataFile2, 0, (int)myFile2.getLength());
			myFile2.Close();

			if (myFile1.getLength() == myFile2.getLength())
			{
				for (int i = 0; i < dataFile1.length; i++)
				{
					if (dataFile1[i] != dataFile2[i])
					{
						equal = false;
					}
					else
					{
						equal = false;
					}
				}
			}

			if (equal)
			{
				System.out.printf("The %1$s is equal %2$s" + "\r\n", fileName1, fileName2);
			}
			else
			{
				System.out.printf("The %1$s not is equal %2$s" + "\r\n", fileName1, fileName2);
			}

			new Scanner(System.in).nextLine();
		}
		catch (RuntimeException e)
		{
			System.out.printf("Error: %1$s!!!" + "\r\n", e.getMessage());
		}
	}
}
Exercisey 8.31





Privacy Policy:



Google uses associated advertising companies to serve ads when it visits our website. These companies may use the information they obtain from your visits to this and other websites (not including your name, address, email address, or phone number) to provide you with announcements about products and services that interest you. If you would like to learn more about this practice and know your options to prevent these companies from using this information. Click in... Privacy and Terms of Google.

Cookies

This site uses Google cookies to provide its services, to personalize advertisements and to analyze traffic. Google receives information about your use of this website. More information in... Privacy and Terms of Google.