Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
Java Program to convert a Primitive Type Value to a String
For converting a primitive type value to a string in Java, use the valueOf() method.Let’s say we want to convert the following double primitive to string.
double val4 = 8.34D;
For that, use the valueOf() method. It converts it into a string.
String str4 = String.valueOf(val4);
Example
public class Demo {
public static void main(String[] args) {
int val1 = 5;
char val2 = 'z';
float val3 = 9.56F;
double val4 = 8.34D;
System.out.println("Integer: "+val1);
System.out.println("Character: "+val2);
System.out.println("Float: "+val3);
System.out.println("Double: "+val4);
String str1 = String.valueOf(val1);
String str2 = String.valueOf(val2);
String str3 = String.valueOf(val3);
String str4 = String.valueOf(val4);
System.out.println("\nConverted to string...");
System.out.println(str1);
System.out.println(str2);
System.out.println(str3);
System.out.println(str4);
}
}
Output
Integer: 5 Character: z Float: 9.56 Double: 8.34 Converted to string... 5 z 9.56 8.34
Advertisements
