com.google.api.client.util.StringUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-http-client Show documentation
Show all versions of google-http-client Show documentation
Google HTTP Client Library for Java. Functionality that works on all supported Java platforms,
including Java 5 (or higher) desktop (SE) and web (EE), Android, and Google App Engine.
The newest version!
/*
* Copyright (c) 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package com.google.api.client.util;
import java.io.UnsupportedEncodingException;
import java.nio.charset.StandardCharsets;
/**
* Utilities for strings.
*
* @since 1.8
* @author Yaniv Inbar
*/
public class StringUtils {
/**
* Line separator to use for this OS, i.e. {@code "\n"} or {@code "\r\n"}.
*
* @since 1.8
*/
public static final String LINE_SEPARATOR = System.getProperty("line.separator");
/**
* Encodes the given string into a sequence of bytes using the UTF-8 charset, storing the result
* into a new byte array.
*
* @param string the String to encode, may be null
* @return encoded bytes, or null
if the input string was null
* @throws IllegalStateException Thrown when the charset is missing, which should be never
* according the Java specification.
* @see Standard charsets
* @since 1.8
*/
public static byte[] getBytesUtf8(String string) {
if (string == null) {
return null;
}
return string.getBytes(StandardCharsets.UTF_8);
}
/**
* Constructs a new String
by decoding the specified array of bytes using the UTF-8
* charset.
*
* @param bytes The bytes to be decoded into characters
* @return A new String
decoded from the specified array of bytes using the UTF-8
* charset, or null
if the input byte array was null
.
* @throws IllegalStateException Thrown when a {@link UnsupportedEncodingException} is caught,
* which should never happen since the charset is required.
* @since 1.8
*/
public static String newStringUtf8(byte[] bytes) {
if (bytes == null) {
return null;
}
return new String(bytes, StandardCharsets.UTF_8);
}
private StringUtils() {}
}