`
feng413
  • 浏览: 26475 次
  • 性别: Icon_minigender_1
  • 来自: 北京
文章分类
社区版块
存档分类
最新评论

inputStreamUtil

阅读更多
public class InputStreamUtil {
	/**
	 * 读取流中的数据转换为byte数组
	 * @param in
	 * @return
	 * @throws Exception
	 */
	public static byte[] getBytes(InputStream in) throws Exception{
		ByteArrayOutputStream byteOs = new ByteArrayOutputStream();
		int data = 0;
		try {
			while ((data = in.read()) != -1) {
				byteOs.write(data);
			}
		} catch (Exception e) {
			throw e;
		}
		return byteOs.toByteArray();
	}
}

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics