You can find the StringJoiner Class under java.util package. This class is really helpful if you want to generate a sequence of strings that is seperated by a delimiter.
Let's take a look at a few examples.
Example 1: StringJoiner with Comma Delimiter
package org.code2care.examples;
import java.util.StringJoiner;
public class StringJoinerExample1 {
public static void main(String[] args) {
String delimiter = ",";
StringJoiner stringJoiner = new StringJoiner(delimiter);
stringJoiner.add("EMPID: 101");
stringJoiner.add("Name: Sam");
stringJoiner.add("Age: 23");
System.out.println(stringJoiner.toString());
}
}
Output:
Example 2: Adding a Prefix and Suffix
We can also add a prefix or a suffix to the StringJoiner object by passing them to the constructor.
String delimiter = ",";
StringJoiner stringJoiner = new StringJoiner(delimiter,"\"","\"");
stringJoiner.add("EMPID: 101");
stringJoiner.add("Name: Sam");
stringJoiner.add("Age: 23");
Output:
-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Java,
- Convert Java Map Collection Object to JSON String using Jackson
- Java Stream flatmap() Examples
- [Fix] Instant java.time.temporal.UnsupportedTemporalTypeException: Unsupported unit: Years
- How to run Java Unit Test cases with Apache Maven?
- How to check if Java main thread is alive
- [Fix] java: incompatible types: incompatible parameter types in lambda expression error
- Parsing CSV file using Java code example (Comma Separated File)
- Unhandled exception type InterruptedException : Java Threads
- Native getClass() method from java.lang.Object Class Explained with examples.
- Java Jackson ObjectMapper Class with Examples
- Java 8 Streams map() with examples
- Java 8 - Convert List to Map Examples
- IntelliJ: Error: Could not find or load main class, java.lang.ClassNotFoundException
- Java Stream with Multiple Filters Example
- How to Clear StringJoiner in Java 8
- Spring 5 IoC Example with application Context XML (ClassPathXmlApplicationContext) and Gradle.
- How to get end of line (EOL) or new line character \r \n in Java
- Spring Boot CRUD Examples using JDBCTemplate
- Delete a File in Java with Examples
- Implementing Insertion Sort Algorithm in Java Program
- Java JDBC Batch Update Example with PreparedStatement
- Java JDBC Select Multiple Records from table as List using PreparedStatement
- [Hibernate] The method buildSessionFactory() from the type Configuration is deprecated
- How to fix Java HTTP java.net.UnknownHostException
- Java 8 Display time in 12 hour AM PM format
More Posts:
- 33: Python Program to find the current time in India (IST) - Python-Programs
- Where are Plugins Installed in Notepad++ - NotepadPlusPlus
- [fix] Chrome: no listeners for an event URLS_SAFE_CHECK__STATUS_UPDATED - Chrome
- Fix [Fatal Error] :2:6: The processing instruction target matching [xX][mM][lL] is not allowed. - Java
- FileZilla Connection time out Failed to retrieve directory listing - FTP
- How to Select All text in vim/vi editor using Keyboard - Linux
- Microsoft Teams Error code - 6 issue - Teams
- Notepad++ select all above or below lines - NotepadPlusPlus