软件包 | 描述 |
---|---|
io.netty.handler.codec.http.multipart |
HTTP多部分支持。
|
Modifier and Type | Interface and Description |
---|---|
interface |
Attribute
属性界面
|
interface |
FileUpload
FileUpload接口可能在内存中,临时文件或任何其他实现上。
|
interface |
HttpData
InterfaceHttpData的扩展接口
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractDiskHttpData
抽象磁盘HttpData实现
|
class |
AbstractHttpData
抽象的HttpData实现
|
class |
AbstractMemoryHttpData
抽象内存HttpData实现
|
class |
DiskAttribute
属性的磁盘实现
|
class |
DiskFileUpload
磁盘FileUpload实现将文件存储到实际文件中
|
class |
MemoryAttribute
内存实现的属性
|
class |
MemoryFileUpload
将文件存储到内存的默认FileUpload实现。
|
class |
MixedAttribute
在内存和文件中使用大小限制的混合实现
|
class |
MixedFileUpload
在内存和文件中使用大小限制的混合实现
|
Modifier and Type | Method and Description |
---|---|
InterfaceHttpData |
InterfaceHttpPostRequestDecoder.currentPartialHttpData()
如果当前处于解码状态(表示所有数据尚未处于内),则返回当前的InterfaceHttpData;如果当前没有处于解码状态的InterfaceHttpData(因为尚未解码或当前未解码),则返回null。
|
InterfaceHttpData |
HttpPostStandardRequestDecoder.currentPartialHttpData() |
InterfaceHttpData |
HttpPostRequestDecoder.currentPartialHttpData() |
InterfaceHttpData |
HttpPostMultipartRequestDecoder.currentPartialHttpData() |
InterfaceHttpData |
InterfaceHttpPostRequestDecoder.getBodyHttpData(java.lang.String name)
这个getMethod从body返回具有给定名称的第一个InterfaceHttpData。
|
InterfaceHttpData |
HttpPostStandardRequestDecoder.getBodyHttpData(java.lang.String name)
这个getMethod从body返回具有给定名称的第一个InterfaceHttpData。
|
InterfaceHttpData |
HttpPostRequestDecoder.getBodyHttpData(java.lang.String name) |
InterfaceHttpData |
HttpPostMultipartRequestDecoder.getBodyHttpData(java.lang.String name)
这个getMethod从body返回具有给定名称的第一个InterfaceHttpData。
|
protected InterfaceHttpData |
HttpPostMultipartRequestDecoder.getFileUpload(java.lang.String delimiter)
获取FileUpload(新的或当前的)
|
InterfaceHttpData |
InterfaceHttpPostRequestDecoder.next()
返回下一个可用的InterfaceHttpData;如果在调用时没有可用的InterfaceHttpData,则返回null。
|
InterfaceHttpData |
HttpPostStandardRequestDecoder.next()
返回下一个可用的InterfaceHttpData;如果在调用时没有可用的InterfaceHttpData,则返回null。
|
InterfaceHttpData |
HttpPostRequestDecoder.next() |
InterfaceHttpData |
HttpPostMultipartRequestDecoder.next()
返回下一个可用的InterfaceHttpData;如果在调用时没有可用的InterfaceHttpData,则返回null。
|
InterfaceHttpData |
InterfaceHttpData.retain() |
InterfaceHttpData |
InterfaceHttpData.retain(int increment) |
InterfaceHttpData |
InterfaceHttpData.touch() |
InterfaceHttpData |
InterfaceHttpData.touch(java.lang.Object hint) |
Modifier and Type | Method and Description |
---|---|
java.util.List<InterfaceHttpData> |
InterfaceHttpPostRequestDecoder.getBodyHttpDatas()
这个getMethod从body返回一个所有HttpDatas的列表。
|
java.util.List<InterfaceHttpData> |
HttpPostStandardRequestDecoder.getBodyHttpDatas()
这个getMethod从body返回一个所有HttpDatas的列表。
|
java.util.List<InterfaceHttpData> |
HttpPostRequestDecoder.getBodyHttpDatas() |
java.util.List<InterfaceHttpData> |
HttpPostMultipartRequestDecoder.getBodyHttpDatas()
这个getMethod从body返回一个所有HttpDatas的列表。
|
java.util.List<InterfaceHttpData> |
InterfaceHttpPostRequestDecoder.getBodyHttpDatas(java.lang.String name)
这个getMethod返回一个所有HttpDatas的列表,其中包含body中给定的名字。
|
java.util.List<InterfaceHttpData> |
HttpPostStandardRequestDecoder.getBodyHttpDatas(java.lang.String name)
这个getMethod返回一个所有HttpDatas的列表,其中包含body中给定的名字。
|
java.util.List<InterfaceHttpData> |
HttpPostRequestDecoder.getBodyHttpDatas(java.lang.String name) |
java.util.List<InterfaceHttpData> |
HttpPostMultipartRequestDecoder.getBodyHttpDatas(java.lang.String name)
这个getMethod返回一个所有HttpDatas的列表,其中包含正文中给定的名字。
|
java.util.List<InterfaceHttpData> |
HttpPostRequestEncoder.getBodyListAttributes()
这个getMethod从正文部分返回一个所有InterfaceHttpData的List。
|
Modifier and Type | Method and Description |
---|---|
void |
HttpPostRequestEncoder.addBodyHttpData(InterfaceHttpData data)
将InterfaceHttpData添加到Body列表
|
protected void |
HttpPostStandardRequestDecoder.addHttpData(InterfaceHttpData data)
实用功能添加新的解码数据
|
protected void |
HttpPostMultipartRequestDecoder.addHttpData(InterfaceHttpData data)
实用功能添加新的解码数据
|
int |
MixedFileUpload.compareTo(InterfaceHttpData o) |
int |
MixedAttribute.compareTo(InterfaceHttpData o) |
int |
MemoryFileUpload.compareTo(InterfaceHttpData o) |
int |
MemoryAttribute.compareTo(InterfaceHttpData other) |
int |
DiskFileUpload.compareTo(InterfaceHttpData o) |
int |
DiskAttribute.compareTo(InterfaceHttpData o) |
void |
HttpDataFactory.removeHttpDataFromClean(HttpRequest request, InterfaceHttpData data)
从干净的列表中删除给定的InterfaceHttpData(不会删除该文件,除非该文件在构建时仍是临时文件)
|
void |
DefaultHttpDataFactory.removeHttpDataFromClean(HttpRequest request, InterfaceHttpData data) |
void |
InterfaceHttpPostRequestDecoder.removeHttpDataFromClean(InterfaceHttpData data)
从FileUploads列表中删除给定的FileUpload以进行清理
|
void |
HttpPostStandardRequestDecoder.removeHttpDataFromClean(InterfaceHttpData data)
从FileUploads列表中删除给定的FileUpload以进行清理
|
void |
HttpPostRequestDecoder.removeHttpDataFromClean(InterfaceHttpData data) |
void |
HttpPostMultipartRequestDecoder.removeHttpDataFromClean(InterfaceHttpData data)
从FileUploads列表中删除给定的FileUpload以进行清理
|
Modifier and Type | Method and Description |
---|---|
void |
HttpPostRequestEncoder.setBodyHttpDatas(java.util.List<InterfaceHttpData> datas)
设置Body HttpDatas列表
|
Copyright © 2008–2018 The Netty Project. All rights reserved.