本文整理了Java中org.glassfish.jersey.media.multipart.MultiPart.cleanup()
方法的一些代码示例,展示了MultiPart.cleanup()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。MultiPart.cleanup()
方法的具体详情如下:
包路径:org.glassfish.jersey.media.multipart.MultiPart
类名称:MultiPart
方法名:cleanup
[英]Performs any necessary cleanup at the end of processing this MultiPart.
[中]在处理此多部分结束时执行任何必要的清理。
代码示例来源:origin: jersey/jersey
public void close() throws IOException {
cleanup();
}
代码示例来源:origin: org.glassfish.jersey.media/jersey-media-multipart
public void close() throws IOException {
cleanup();
}
代码示例来源:origin: com.eclipsesource.jaxrs/jersey-all
public void close() throws IOException {
cleanup();
}
代码示例来源:origin: hstaudacher/osgi-jax-rs-connector
public void close() throws IOException {
cleanup();
}
代码示例来源:origin: hstaudacher/osgi-jax-rs-connector
public void close() throws IOException {
cleanup();
}
代码示例来源:origin: com.github.jakimli.pandaria/pandaria-core
public void reset() {
this.uri = null;
this.method = null;
this.requestBody = null;
this.requestHeaders.clear();
this.attachments.cleanup();
this.cookies.clear();
this.responseBody = null;
this.responseStatus = 0;
this.responseHeaders.clear();
}
代码示例来源:origin: JakimLi/pandaria
public void reset() {
this.uri = null;
this.method = null;
this.requestBody = null;
this.requestHeaders.clear();
this.attachments.cleanup();
this.cookies.clear();
this.responseBody = null;
this.responseStatus = 0;
this.responseHeaders.clear();
}
内容来源于网络,如有侵权,请联系作者删除!