com.almende.util.StringUtil Maven / Gradle / Ivy
package com.almende.util;
import java.io.IOException;
import java.io.InputStream;
public class StringUtil {
/**
* Convert a stream to a string
* @param in
* @return
* @throws IOException
*/
public static String streamToString(InputStream in) throws IOException {
StringBuffer out = new StringBuffer();
byte[] b = new byte[4096];
for (int n; (n = in.read(b)) != -1;) {
out.append(new String(b, 0, n));
}
return out.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy