Convert List int to String Java

Looking to convert List to String in Java? Let’s have a look at how to convert a Java Collections List of elements to a String in Java. In this post, we have talked about these best 12 methods of convert list string in java, you can learn and also implement it easily.

To Convert a list to string in java, You can do by,

1. Using toString[] 2. List Of Object To String 3. Join Method[StringUtils] 4. Stream Collectors 5. Comma Separator[delimiter] 6. Convert Character List To String 7. With Double Quotes 8. Sort Method 9. toJSON Method 10. The method in Java 8 11. ReplaceAll Method

12. LinkList to String

Introduction to Convert List to String in Java

Basically List in Java is an ordered collection or a default sequence.

List accepts duplicate elements unlike Map doesn’t accept duplicate values and also holds the object in key-value pairs.

We can print the contents of a List element in a readable form while debugging the code, which is helpful.

List interface and String class were part of Java object-oriented programming API.

We can add any type of Java object to a List. If the List does not type, then using Java Generics we can apply objects of various types in the same List.

Typically we will enclose the generic type in square brackets.

Using toString[]

From the below Java program, let’s see how to convert Java list to string array using the toString method.

We are passing an integer argument[number] to create a java string array using the Java Arrays asList[] method.

In other words, we are passing a list of integers as an array to list.

public static void main[String[] args] { try { List list = Arrays.asList[0, 1, 2, 3]; System.out.println[list]; } catch [Exception e] { e.printStackTrace[]; } } Output: [0, 1, 2, 3]

As per the output code above, we can see a list of array values printed as an array of strings or string array in java.

This way of implementation uses the inbuilt toString[] method within the List.

Here Integer Java generics type has an internal implementation of the toString[] method.

In the above example, we used Arrays.asList to create an array in java in an optimal manner.

But we can also use standard ArrayList in java and can add the values using the list.add[] method or addAll method.

Also, we can convert from traditional ArrayList to String Array using ArrayList Class.

Interview Question 1 -> Primitive Types in Java:

boolean, byte, char, short, int, long, float, and double are the primitive types in Java API.

You May Like,

List of Object to String

Let’s see how Object toString[] method works as per below java program class.

public class HelloObject { String name; int age; public String getName[] { return name; } public void setName[String name] { this.name = name; } public int getAge[] { return age; } public void setAge[int age] { this.age = age; } @Override public String toString[] { return "HelloObject [name=" + name + ", age=" + age + "]"; } }

Here the custom toString[] function which returns in a custom string object format.

public static void main[String[] args] { try { List list = new ArrayList[]; HelloObject hb = new HelloObject[]; hb.setName["James"]; hb.setAge[25]; list.add[hb]; System.out.println[List]; } catch [Exception e] { e.printStackTrace[]; } } Output: [HelloObject [name=James, age=25]]

Here custom toString[] in the HelloObject will convert the Object into String representation format.

As per output, we can see the list of string.

Interview Question 2 -> ArrayList vs LinkedList:

Array List in java API applies a dynamic array to store the elements.

Whereas LinkedList uses a double linked list to store the elements.

Also, the ArrayList String value can convert to a byte array using the Java programming language.

Again both ArrayList and LinkedList accept duplicate values.

But we can remove duplicates using plain Java code, Lambdas, Guava.

Join Method [StringUtils]

We can use the join method of Apache Commons Lang StringUtils class to achieve the java list to string conversion.

public static void main[String[] args] { try { Listlist = Arrays.asList[0, 1, 2, 3]; System.out.println[StringUtils.join[list, " "]]; } catch [Exception e] { e.printStackTrace[]; } } Output: 0 1 2 3

StringUtils.join method have inbuilt toString[] method.

As we can see from the above output, it prints the List elements as String data type with space delimiter.

we can also use java regular expressions to define a search pattern for strings.

A regular expression is best applicable for pattern matching of expressions or functions.

Here is the maven dependency for Apache commons-lang StringUtils class of java API.

you can use this in your project pom.xml file as a dependency.

org.apache.commons commons-lang3 3.9

The latest version of the dependency will be available here.

Stream Collectors

java list to string

Now let’s use the Java Util Stream Collectors API package to convert List to String.

Here we leverage Java streams method stream[] for conversion.

public static void main[String[] args] { try { List list = Arrays.asList[1, 2, 3]; String result = list.stream[]. map[i -> String.valueOf[i]]. collect[Collectors.joining["/", "[", "]"]]; System.out.println[result]; } catch [Exception e] { e.printStackTrace[]; } } Output: [1/2/3]

In the above example, we can see the usage of the stream[]. map, note that it is different from standard java map.

Comma Separator[delimiter]

Let’s go through how to convert using comma-separated values.

public static void main[String[] args] { try { List countries = Arrays.asList["USA", "UK", "Australia", "India"]; String countriesComma = String.join[",", countries]; System.out.println[countriesComma]; } catch [Exception e] { e.printStackTrace[]; } } Output: USA,UK,Australia,India

As per the output above, we can see conversion using delimiter i,e. separated by Comma or Comma separated.

Using join method, you can convert List to String with Separator comma, backslash, space, and so on.

Convert Character List to String

Let’s go through how to convert List of Characters to String using StringBuilder class.

public static void main[String[] args] { try { List list = Arrays.asList['c', 's', 'v']; StringBuilder sb = new StringBuilder[]; for [Character chr : list] { sb.append[chr]; } // convert to string String result = sb.toString[]; System.out.println[result]; } catch [Exception e] { e.printStackTrace[]; } } Output: csv

with Double Quotes

Using Apache Commons StringUtils package, convert List to String with Quotes using Java.

Refer to the below implementation

public static void main[String[] args] { try { List countries = Arrays.asList["USA", "UK", "Australia", "India"]; String join = StringUtils.join[countries, "\", \""]; String wrapQuotes = StringUtils.wrap[join, "\""]; System.out.println[wrapQuotes]; } catch [Exception e] { e.printStackTrace[]; } } Output: "USA", "UK", "Australia", "India"

Of course, you can convert using Single Quotes with Single String as well.

Sort Method

we can convert using Java Sort with the below implementation.

public static void main[String[] args] { try { List countries = Arrays.asList["USA", "UK", "Australia", "India"]; countries.sort[Comparator.comparing[String::toString]]; System.out.println[countries]; } catch [Exception e] { e.printStackTrace[]; } } Output: [Australia, India, UK, USA]

toJson Method

Let’s convert List to String JSON in Java using Google GSON library.

It is a straight forward method ToJson[] which will set and convert the input to JSON String.

public static void main[String[] args] { try { List countries = Arrays.asList["USA", "UK", "Australia", "India"]; String json = new Gson[].toJson[countries]; System.out.println[json]; } catch [Exception e] { e.printStackTrace[]; } } Output: ["USA","UK","Australia","India"]

In Java 8

Let’s convert List to String using String.join[] method in Java 8.

public static void main[String[] args] { try { List list = Arrays.asList["USA", "UK", "INDIA"]; String delimiter = "-"; String result = String.join[delimiter, list]; System.out.println[result]; } catch [Exception e] { e.printStackTrace[]; } } Output: USA-UK-INDIA

replaceAll Method

Lets convert List to String using replaceAll[] and String.join[] method.

You can also notice inline lambda expressions used in the replaceAll method.

public static void main[String[] args] { try { List countries = Arrays.asList["usa", "uk", "india"]; countries.replaceAll[r -> r.toUpperCase[]]; String result = String.join[" ", countries]; System.out.println[result]; } catch [Exception e] { e.printStackTrace[]; } } Output: USA UK INDIA

Let’s convert LinkedList to String using String.join[] method.

public static void main[String[] args] { try { LinkedList list = new LinkedList[]; list.add["USA"]; list.add["UK"]; list.add["INDIA"]; String result = String.join[" ", list]; System.out.println[result]; } catch [Exception e] { e.printStackTrace[]; } } Output: USA UK INDIA

In case of any issues during conversion, we can notice the error message in the console log.

To conclude, in this tutorial we gone through different ways to convert a Java List to String data type.

List to String methods conversion is also common in other programming languages like JavaScript, Python, Jquery.

In a nutshell, JavaScript uses an str function for concatenate, likewise, the python program uses join method for conversion and concatenate a string.

Interested to read JavaScript resources, check out this JavaScript split method article.

Keeping sharing java tutorials and happy coding 🙂

Video liên quan

Chủ Đề