Home | Ajax | BioInformatics | Dojo | EAI | EJB | Hibernate | J2ME | Java | Java Glossary | Java Servlets | JavaScript | Jboss | JDBC | JDO | Jmeter | JSF | JSP | JUnit | Maven | MySQL | Spring Framework | SQL | Struts | Technology | WAP | Web Services | XML

Search:
   Programming Tutorials: Ajax | Articles | JSP | Bioinformatics | Database | Free Books | Hibernate | J2EE | J2ME | Java | JavaScript | JDBC | JMS | Linux | MS Technology | PHP | RMI | Web-Services | Servlets | Struts | UML Facing Programming Problem? Ask Questions?, Browse Latest Questions, Question-Answer Guidelines
Java
  JDO Tutorials
  EAI Articles
  Struts Tutorials
  Java Tutorials
  Java Certification
  Java Applet
Questions
Comments
Convert One Unit to Another
Again in this section, you will learn to convert One Unit to Another. The following program helps you in converting some more units to another.
 
 

Convert One Unit to Another

                         

Again in this section, you will learn to convert One Unit to Another. The following program helps you in converting some more units to another. 

Code Description:

In this example we have taken a table of units as Gallons, Liters, Miles, Carats, Meters etc to convert them to another units. First of all it will ask to enter a choice then it will convert the unit. For the conversion process we have used convertGallonsToLtrs();, convertMetersToMiles();,
convertLtrsToGallons();, convertCaratsToGrams(); etc. For the choice of entries we have used switch case here. At last we have applied the formulae for all the conversions as shown in the program.

We have also used conditional-OR operator to select the choice as 1,2 and so on. This means that the choice should be between 1 to 5 only. To take the input of the choice for TableChoice from the keyboard we have used the same method i.e Integer.parseInt(bf.readLine());.

Here is the code of this program:

import java.io.*;
import java.util.*;

public class UnitConverter1{
  BufferedReader bf;
  public static void main (String[] argsthrows Exception{
    UnitConverter1 Un = new UnitConverter1();
    }
  public UnitConverter1() throws Exception{
    bf = new BufferedReader(new InputStreamReader(System.in));
    int TableChoice;
    boolean done = false;
    while (!done) {
      TableChoice = runMenu();
      switch (TableChoice) {
        case 1:  System.out.println("convertGallonsToLtrs");
        convertGallonsToLtrs();
        break;
        case 2:  System.out.println("convertMetersToMiles");
        convertMetersToMiles();
        break;
        case 3:  System.out.println("convertGramsToCarats")
        convertGramsToCarats();
        break;
        case 4:  System.out.println("convertInchesToMtrs")
        convertInchesToMtrs();
        break;
        case 5:  System.out.println("convertLtrsToGallons")
        convertLtrsToGallons();
        break;
        case 6:  System.out.println("convertGmsTokgs")
        convertGmsTokgs();
        break;
        case 7:  System.out.println("convertCaratsToGrams")
        convertCaratsToGrams();
        break;
        default: System.out.println("Quiting...")
        System.exit(0);
        break;
      }
    }
  }
  
  public int runMenu() throws Exception{
    int TableChoice;
    System.out.println();
    System.out.println("Conversion Table:");
    System.out.println("-------------------------");
    System.out.println("1. Gallons To Liters");
    System.out.println("2. Meters To Miles");
    System.out.println("3. Grams To Carats");
    System.out.println("4. Inches To Meters");
    System.out.println("5. Liters To Gallons");
    System.out.println("6. Grams To kilograms");
    System.out.println("7. Carats To Grams");
    System.out.println("8. Quit");
    System.out.println("-------------------------");
    System.out.print("Choice: ");
    TableChoice = Integer.parseInt(bf.readLine());
    while (TableChoice < || TableChoice > 8) {
      System.out.print("Invalid choice, try again: ");
      TableChoice = Integer.parseInt(bf.readLine());
    }
    System.out.println();
    return TableChoice;
  }
  
  public void convertGallonsToLtrs() throws Exception{
    System.out.print("Enter the Gallon:");
    int gallon = Integer.parseInt(bf.readLine());
    double liters = gallon * 3.7854118;
    System.out.println("Liters: " + liters);
  }
  
  public void convertMetersToMiles() throws Exception{
    System.out.print("Enter the Meters:");
    int meter = Integer.parseInt(bf.readLine());
    double miles = meter * 0.00062137119;
    System.out.println("Miles: " + miles);
  }
  
  public void convertGramsToCarats() throws Exception{
    System.out.print("Enter the Gram:");
    int gram = Integer.parseInt(bf.readLine());
    double carats = gram * 5;
    System.out.println("Carats: " + carats);
  }
  
  public void convertInchesToMtrs() throws Exception{
    System.out.print("Enter the Inches:");
    int inches = Integer.parseInt(bf.readLine());
    double meters = inches * 0.0254;
    System.out.println("Meters:" + meters);
  }

    public void convertLtrsToGallons() throws Exception{
    System.out.print("Enter the Liters:");
    int liter = Integer.parseInt(bf.readLine());
    double gallon = liter * 0.264172052358148;
    System.out.println("Gallons: " + gallon);
  }

  public void convertGmsTokgs() throws Exception{
    System.out.print("Enter the Grams:");
    int gram = Integer.parseInt(bf.readLine());
    double kilogram = gram * 0.001;
    System.out.println("kilogram: " + kilogram);
    }

  public void convertCaratsToGrams() throws Exception{
    System.out.print("Enter the Carat:");
    int carat = Integer.parseInt(bf.readLine());
    double gram = carat * 0.2;
    System.out.println("Gram:" + gram);
    }
}

Output of the program:

C:\unique>javac UnitConverter1.java

C:\unique>java UnitConverter1

Conversion Table:

1. Gallons To Liters
2. Meters To Miles
3. Grams To Carats
4. Inches To Meters
5. Liters To Gallons
6. Grams To kilograms
7. Carats To Grams
8. Quit

Choice: 1

convertGallonsToLtrs
Enter the Gallon:1
Liters: 3.7854118

Conversion Table:

1. Gallons To Liters
2. Meters To Miles
3. Grams To Carats
4. Inches To Meters
5. Liters To Gallons
6. Grams To kilograms
7. Carats To Grams
8. Quit

Choice: 2

convertMetersToMiles
Enter the Meters:1
Miles: 6.2137119E-4

Conversion Table:

1. Gallons To Liters
2. Meters To Miles
3. Grams To Carats
4. Inches To Meters
5. Liters To Gallons
6. Grams To kilograms
7. Carats To Grams
8. Quit

Choice: 3

convertGramsToCarats
Enter the Gram:1
Carats: 5.0

Conversion Table:

1. Gallons To Liters
2. Meters To Miles
3. Grams To Carats
4. Inches To Meters
5. Liters To Gallons
6. Grams To kilograms
7. Carats To Grams
8. Quit

Choice: 4

convertInchesToMtrs
Enter the Inches:1
Meters:0.0254

Conversion Table:

1. Gallons To Liters
2. Meters To Miles
3. Grams To Carats
4. Inches To Meters
5. Liters To Gallons
6. Grams To kilograms
7. Carats To Grams
8. Quit

Choice: 5

convertLtrsToGallons
Enter the Liters:1
Gallons: 0.264172052358148

Conversion Table:

1. Gallons To Liters
2. Meters To Miles
3. Grams To Carats
4. Inches To Meters
5. Liters To Gallons
6. Grams To kilograms
7. Carats To Grams
8. Quit

Choice: 6

convertGmsTokgs
Enter the Grams:1
kilogram: 0.0010

Conversion Table:

1. Gallons To Liters
2. Meters To Miles
3. Grams To Carats
4. Inches To Meters
5. Liters To Gallons
6. Grams To kilograms
7. Carats To Grams
8. Quit

Choice: 7

convertCaratsToGrams
Enter the Carat:1
Gram:0.2

Conversion Table:

1. Gallons To Liters
2. Meters To Miles
3. Grams To Carats
4. Inches To Meters
5. Liters To Gallons
6. Grams To kilograms
7. Carats To Grams
8. Quit

Choice: 8

Quiting...

C:\unique>

Download this example.

                         

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Java String toLowerCase Example
Java String toCharArray Example
Java String substring Example
Java String indexOf Example
Java String startsWith Example
Java String hashCode Example
Java String matches Example
Java String length Example
Java String lastIndexOf Example
Java String isEmpty Example
Java String equalsIgnoreCase Example
Java String equals Example
Java String endsWith Example
Java String copyValueOf Example
Java String contentEquals Example
  EAI Articles
  Java Certification
Tell A Friend
Your Friend Name
Search Tutorials

 

 
 
Browse all Java Tutorials
Java JSP Struts Servlets Hibernate XML
Ajax JDBC EJB MySQL JavaScript JSF
Maven2 Tutorial JEE5 Tutorial Java Threading Tutorial Photoshop Tutorials Linux Technology
Technology Revolutions Eclipse Spring Tutorial Bioinformatics Tutorials Tools SQL
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Indian Software Development Company | iPhone Development Company in India | Java Training Delhi | Java Training at Noida |

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.