Home Tutorial Java Corejava Dataconversion Byte Conversion from byte to short

 
 

Conversion from byte to short
Posted on: September 6, 2010 at 12:00 AM
In this tutorial we will learn how to convert a byte type value to short type value.

Conversion from byte to short:

In this tutorial we will learn how to convert a byte type value to short type value.

Description:

This program will take a byte value from console and provides a conversion to short type data. The line byte mybyte = Byte.parseByte(buffreader.readLine()); reads the byte type data from console. The line short myshort = (short)(mybyte); converts the mybyte byte type value to myshort short type data.

Code:

import java.io.*;

class bytetoshort {
public static void main(String[] args) {
try {
// Reads the value from console
BufferedReader buffreader = new BufferedReader(new InputStreamReader(System.in));
System.out.println("---Data Conversion from byte type to short type---");
System.out.println("Enter byte type value: ");
// Read byte type data
byte mybyte = Byte.parseByte(buffreader.readLine());
// Convert byte type data to short type
short myshort = (short)(mybyte);
System.out.println("Converted value from byte type to short type is : " + myshort);
} 
catch (Exception e) {
System.out.println(" Error " + e);
}
}
}
 

Output:

Download this code

Related Tags for Conversion from byte to short:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.