Uses of Class
org.jboss.netty.handler.codec.http.multipart.HttpPostRequestEncoder.ErrorDataEncoderException
-
Packages that use HttpPostRequestEncoder.ErrorDataEncoderException Package Description org.jboss.netty.handler.codec.http.multipart HTTP multipart support. -
-
Uses of HttpPostRequestEncoder.ErrorDataEncoderException in org.jboss.netty.handler.codec.http.multipart
Methods in org.jboss.netty.handler.codec.http.multipart that throw HttpPostRequestEncoder.ErrorDataEncoderException Modifier and Type Method Description voidHttpPostRequestEncoder. addBodyAttribute(String name, String value)Add a simple attribute in the body as Name=ValuevoidHttpPostRequestEncoder. addBodyFileUpload(String name, File file, String contentType, boolean isText)Add a file as a FileUploadvoidHttpPostRequestEncoder. addBodyFileUploads(String name, File[] file, String[] contentType, boolean[] isText)Add a series of Files associated with one File parametervoidHttpPostRequestEncoder. addBodyHttpData(InterfaceHttpData data)Add the InterfaceHttpData to the Body listHttpRequestHttpPostRequestEncoder. finalizeRequest()Finalize the request by preparing the Header in the request and returns the request ready to be sent.
Once finalized, no data must be added.
If the request does not need chunk (isChunked() == false), this request is the only object to send to the remote server.HttpChunkHttpPostRequestEncoder. nextChunk()Returns the next available HttpChunk.voidHttpPostRequestEncoder. setBodyHttpDatas(List<InterfaceHttpData> datas)Set the Body HttpDatas listConstructors in org.jboss.netty.handler.codec.http.multipart that throw HttpPostRequestEncoder.ErrorDataEncoderException Constructor Description HttpPostRequestEncoder(HttpRequest request, boolean multipart)HttpPostRequestEncoder(HttpDataFactory factory, HttpRequest request, boolean multipart)HttpPostRequestEncoder(HttpDataFactory factory, HttpRequest request, boolean multipart, Charset charset)HttpPostRequestEncoder(HttpDataFactory factory, HttpRequest request, boolean multipart, Charset charset, HttpPostRequestEncoder.EncoderMode encoderMode)
-