All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jd.httpservice.converters.InputStreamBodyConverter Maven / Gradle / Ivy

There is a newer version: 2.1.4.RELEASE
Show newest version
package com.jd.httpservice.converters;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

import com.jd.httpservice.RequestBodyConverter;

import utils.io.BytesUtils;

public class InputStreamBodyConverter implements RequestBodyConverter{

	@Override
	public void write(Object param, OutputStream out) throws IOException{
		BytesUtils.copy((InputStream)param, out);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy