org.hibernate.search.util.impl.StreamHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-search-engine Show documentation
Show all versions of hibernate-search-engine Show documentation
Core of the Object/Lucene mapper, query engine and index management
/*
* Hibernate Search, full-text search for your domain model
*
* License: GNU Lesser General Public License (LGPL), version 2.1 or later
* See the lgpl.txt file in the root directory or .
*/
package org.hibernate.search.util.impl;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;
import java.io.StringWriter;
import java.io.Writer;
/**
* @author Hardy Ferentschik
*/
public class StreamHelper {
private StreamHelper() {
}
/**
* Reads the provided input stream into a string
*
* @param inputStream the input stream to read from
* @return the content of the input stream as string
* @throws IOException if an I/O error occurs while reading the {@link InputStream}
*/
public static String readInputStream(InputStream inputStream) throws IOException {
Writer writer = new StringWriter();
try {
char[] buffer = new char[1000];
Reader reader = new BufferedReader( new InputStreamReader( inputStream, "UTF-8" ) );
int r = reader.read( buffer );
while ( r != -1 ) {
writer.write( buffer, 0, r );
r = reader.read( buffer );
}
return writer.toString();
}
finally {
Closeables.closeQuietly( writer );
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy