In this tutorial we will learn how to convert a short type data to String type.
In this tutorial we will learn how to convert a short type data to String type.In this tutorial we will learn how to convert a short type data to String type.
This program will take a short type value from console and provides a conversion to String type. The line short myshort = Short.parseShort(buffreader.readLine()); reads the short type data from console. The line String mystring = Short.toString(myshort); is used to convert the myshort short type data to mystring String type data.
import java.io.*;
class shorttostring {
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 short type to String type---");
System.out.println("Enter short type value: ");
// Read short type data
short myshort = Short.parseShort(buffreader.readLine());
// Convert short type data to String type
String mystring = Short.toString(myshort);
System.out.println("Converted value from short type to String is : " + mystring);
}
catch (Exception e) {
System.out.println(" Error " + e);
}
}
}
