 
  Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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
 