Uses of Class
org.miaixz.bus.http.plugin.httpz.MultipartFile
Packages that use MultipartFile
Package
Description
Provides a fluent, builder-based API (Httpz) for making HTTP requests, simplifying interactions with the core
Httpd client.-
Uses of MultipartFile in org.miaixz.bus.http.plugin.httpz
Fields in org.miaixz.bus.http.plugin.httpz with type parameters of type MultipartFileModifier and TypeFieldDescriptionprotected List<MultipartFile> HttpRequest.listA list of files for multipart uploads.Constructor parameters in org.miaixz.bus.http.plugin.httpz with type arguments of type MultipartFileModifierConstructorDescriptionprotectedHttpRequest(String url, Object tag, Map<String, String> params, Map<String, String> headers, List<MultipartFile> list, String body, MultipartBody multipartBody, String id) Constructs an HttpRequest.protectedHttpRequest(String url, Object tag, Map<String, String> params, Map<String, String> encodedParams, Map<String, String> headers, List<MultipartFile> list, String body, MultipartBody multipartBody, String id) Constructs an HttpRequest with both standard and pre-encoded parameters.PostRequest(String url, Object tag, Map<String, String> params, Map<String, String> headers, List<MultipartFile> list, String body, MultipartBody multipartBody, String id) Constructs a newPostRequest.PostRequest(String url, Object tag, Map<String, String> params, Map<String, String> encoded, Map<String, String> headers, List<MultipartFile> list, String body, MultipartBody multipartBody, String id) Constructs a newPostRequestwith both standard and pre-encoded parameters.PutRequest(String url, Object tag, Map<String, String> params, Map<String, String> headers, List<MultipartFile> list, String body, MultipartBody multipartBody, String id) Constructs a newPutRequest.