Uses of Class
org.miaixz.bus.http.plugin.httpz.PutBuilder
Packages that use PutBuilder
Package
Description
An HTTP client for Java applications.
Provides a fluent, builder-based API (Httpz) for making HTTP requests, simplifying interactions with the core
Httpd client.-
Uses of PutBuilder in org.miaixz.bus.http
Methods in org.miaixz.bus.http that return PutBuilderModifier and TypeMethodDescriptionHttpz.Client.put()Creates aPutBuilderfor constructing PUT requests.static PutBuilderHttpz.put()Creates a newPutBuilderfor constructing PUT requests. -
Uses of PutBuilder in org.miaixz.bus.http.plugin.httpz
Methods in org.miaixz.bus.http.plugin.httpz that return PutBuilderModifier and TypeMethodDescriptionAdds a file to the multipart request from a byte array.An alias foraddFile(String, String, byte[]).Adds a file to the multipart request from aFileobject.Adds a file to the multipart request from a string, using the default UTF-8 encoding.Adds a file to the multipart request from a string with a specified charset.Sets a raw string as the request body.PutBuilder.multipartBody(MultipartBody multipartBody) Sets a pre-constructedMultipartBody.