Saturday, October 25, 2025
HomeLanguagesJavaJoiner class | Guava | Java

Joiner class | Guava | Java

Guava’s Joiner class provides various methods to handle joining operations on string, objects, etc. This class provides advanced functionality for the join operation.

Declaration: Following is the declaration for com.google.common.base.Joiner class :

@GwtCompatible
public class Joiner
   extends Object

The following table gives a brief summary of the methods provided by Guava’s Joiner class:

Example:




// Java code to show implementation of
// Guava's Joiner class's method
  
import com.google.common.base.Joiner;
import java.util.*;
  
class GFG {
  
    // Driver's code
    public static void main(String[] args)
    {
  
        // Creating a string array
        String[] arr = { "one", "two", "three", "four" };
        System.out.println("Original Array: "
                           + Arrays.toString(arr));
  
        // Use Joiner to combine all elements.
        // ... Specify delimiter in on method.
  
        // The last part of the Joiner statement, join,
        // can receive an Iterable (like an ArrayList) or
        // an Object array. It returns a String.
        String result = Joiner.on("...")
                            .join(arr);
  
        System.out.println("Joined String: "
                           + result);
    }
}


Output:

Original Array: [one, two, three, four]
Joined String: one...two...three...four

Some more methods provided by Guava’s Joiner class are:

Example:




// Java code to show implementation of
// Guava's Joiner class's method
  
import com.google.common.base.Joiner;
import java.util.*;
  
class GFG {
  
    // Driver's code
    public static void main(String[] args)
    {
  
        // Creating a string array
        String[] arr = { "one", "two", null,
                         "four", null, "five" };
        System.out.println("Original Array: "
                           + Arrays.toString(arr));
  
        // Unlike the standard join method, we can
        // filter elements with a Joiner. With skipNulls,
        // null elements in an array or Iterable are removed.
        // Often null elements are not needed.
        // $$ Specify delimiter in on method.
  
        // The last part of the Joiner statement, join,
        // can receive an Iterable (like an ArrayList) or
        // an Object array. It returns a String.
        String result = Joiner.on('+')
                            .skipNulls()
                            .join(arr);
  
        System.out.println("Joined String: "
                           + result);
    }
}


Output:

Original Array: [one, two, null, four, null, five]
Joined String: one+two+four+five

Reference: Google Guava Joiner Class

RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS