![JAR search and dependency download from the Maven repository](/logo.png)
main.java.com.cloudant.http.internal.Base64OutputStreamFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudant-client Show documentation
Show all versions of cloudant-client Show documentation
Official Cloudant client for Java
/**
* Copyright (c) 2015 Cloudant, Inc. All rights reserved.
*
* 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.cloudant.http.internal;
import java.io.OutputStream;
import java.lang.reflect.Constructor;
/**
* Created by tomblench on 07/07/2014.
*/
public class Base64OutputStreamFactory {
public static OutputStream get(OutputStream os) {
try {
Class androidBase64 = null;
if ((androidBase64 = getAndroidBase64Class()) != null) {
Constructor ctor = androidBase64.getDeclaredConstructor(OutputStream.class, int.class);
// 2 = android.util.BASE64.NO_WRAP http://developer.android.com/reference/android/util/Base64.html#NO_WRAP
return (OutputStream)ctor.newInstance(os, 2);
} else {
Class c = Class.forName("org.apache.commons.codec.binary.Base64OutputStream");
Constructor ctor = c.getDeclaredConstructor(OutputStream.class, boolean.class, int.class, byte[].class);
return (OutputStream)ctor.newInstance(os, true, 0, null);
}
} catch (Exception e) {
// TODO log
throw new RuntimeException(e);
}
}
//If the Android Base64OutputStream class exists, return the class. Else, return null.
private static Class getAndroidBase64Class() {
try {
Class androidBase64 = Class.forName("android.util.Base64OutputStream");
return androidBase64;
} catch (final ClassNotFoundException e) {
return null;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy