Skip to content

findbugs: deal with all the encoding issues in a unified way #467

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions utils/src/com/cloud/utils/StringUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

package com.cloud.utils;

import java.nio.charset.Charset;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
Expand All @@ -32,6 +33,21 @@
public class StringUtils {
private static final char[] hexChar = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'};

private static Charset preferredACSCharset;

{
String preferredCharset = "UTF-8";
if (Charset.isSupported(preferredCharset)) {
preferredACSCharset = Charset.forName(preferredCharset);
} else {
preferredACSCharset = Charset.defaultCharset();
}
}

public static Charset getPreferredCharset() {
return preferredACSCharset;
}

public static String join(Iterable<? extends Object> iterable, String delim) {
StringBuilder sb = new StringBuilder();
if (iterable != null) {
Expand Down