org.glassfish.jersey.media.multipart.MultiPart.cleanup()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(1.4k)|赞(0)|评价(0)|浏览(103)

本文整理了Java中org.glassfish.jersey.media.multipart.MultiPart.cleanup()方法的一些代码示例,展示了MultiPart.cleanup()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。MultiPart.cleanup()方法的具体详情如下:
包路径:org.glassfish.jersey.media.multipart.MultiPart
类名称:MultiPart
方法名:cleanup

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();
}

相关文章