
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
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
Creating String Object from Character Array in Java
Here is our character array.
char[] ch = { 'T', 'E', 'S', 'T'};
To create string object from the above character array is quite easy. Add the array to the string parameter as shown below −
String str = new String(ch);
Example
public class Demo { public static void main(String[] args) { char[] ch = { 'T', 'E', 'S', 'T'}; String str = new String(ch); System.out.println(str); } }
Output
TEST
- Related Questions & Answers
- Creating String Object from certain part of a character Array in Java
- Java Program to create Character Array from String Objects
- Creating a string from a subset of the array elements in Java
- Remove a character from a Java StringBuffer object
- Difference between String and Character array in Java.
- Creating a JavaScript Object from Single Array and Defining the Key Value?
- how to convert Object array to String array in java
- Java program to convert a character array to string
- JavaScript creating an array from JSON data?
- How to remove all common character from string array elements in android?
- Java program for removing n-th character from a string
- Java Program to Get a Character From the Given String
- Difference Between Character Array and String
- Sort String Array alphabetically by the initial character only in Java
- How to remove the last character from a string in Java?
Advertisements