Sunday, February 22, 2026
HomeLanguagesJavaJava Guava | Bytes.contains() method with Examples

Java Guava | Bytes.contains() method with Examples

Bytes.contains() method of Guava’s Bytes Class accepts two parameters array and target. The method is used to check if the target element is present in the array or not.

Syntax:

public static boolean contains(byte[] array,
                               byte target)

Parameters: The method accepts two parameters :

  • array: An array of byte values, possibly empty.
  • target: A primitive byte value which is to be checked if it is present in the array or not.

Return Value: The method returns true if target is present as an element anywhere in array, and returns false if the target is not present anywhere in the array.

Exceptions: The method does not throw any exceptions.

Below examples illustrate the implementation of above method:

Example 1:




// Java code to show implementation of
// Guava's Bytes.contains() method
  
import com.google.common.primitives.Bytes;
import java.util.Arrays;
  
class GFG {
  
    // Driver's code
    public static void main(String[] args)
    {
  
        // Creating a Byte array
        byte[] arr = { 5, 4, 3, 2, 1 };
  
        byte target = 3;
  
        // Using Bytes.contains() method to search
        // for an element in the array. The method
        // returns true if element is found, else
        // returns false
        if (Bytes.contains(arr, target))
            System.out.println("Target is present"
                               + " in the array");
        else
            System.out.println("Target is not present"
                               + " in the array");
    }
}


Output:

Target is present in the array

Example 2 :




// Java code to show implementation of
// Guava's Bytes.contains() method
  
import com.google.common.primitives.Bytes;
import java.util.Arrays;
  
class GFG {
  
    // Driver's code
    public static void main(String[] args)
    {
        // Creating a Byte array
        byte[] arr = { 2, 4, 6, 8, 10 };
  
        byte target = 7;
  
        // Using Bytes.contains() method to search
        // for an element in the array. The method
        // returns true if element is found, else
        // returns false
        if (Bytes.contains(arr, target))
            System.out.println("Target is present"
                               + " in the array");
        else
            System.out.println("Target is not present"
                               + " in the array");
    }
}


Output:

Target is not present in the array

Reference: https://google.github.io/guava/releases/19.0/api/docs/com/google/common/primitives/Bytes.html#contains(byte[], %20byte)

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32506 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6882 POSTS0 COMMENTS
Nicole Veronica
12005 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12099 POSTS0 COMMENTS
Shaida Kate Naidoo
7011 POSTS0 COMMENTS
Ted Musemwa
7255 POSTS0 COMMENTS
Thapelo Manthata
6967 POSTS0 COMMENTS
Umr Jansen
6956 POSTS0 COMMENTS