本文整理匯總了Java中org.simpleframework.http.parse.ContentDispositionParser類的典型用法代碼示例。如果您正苦於以下問題:Java ContentDispositionParser類的具體用法?Java ContentDispositionParser怎麽用?Java ContentDispositionParser使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
ContentDispositionParser類屬於org.simpleframework.http.parse包,在下文中一共展示了ContentDispositionParser類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: getDisposition
import org.simpleframework.http.parse.ContentDispositionParser; //導入依賴的package包/類
public ContentDisposition getDisposition() {
String value = getValue("Content-Disposition");
if(value == null) {
return null;
}
return new ContentDispositionParser(value);
}
示例2: setUp
import org.simpleframework.http.parse.ContentDispositionParser; //導入依賴的package包/類
public void setUp() {
parser = new ContentDispositionParser();
}
示例3: disposition
import org.simpleframework.http.parse.ContentDispositionParser; //導入依賴的package包/類
/**
* This is used to parse the content disposition header header so that the
* MIME type is available to the segment. This provides an instance of the
* <code>Disposition<code> object to represent
* the content disposition, this exposes the upload type.
*
* @param value
* this is the content type value to parse
*/
protected void disposition(String value) {
this.disposition = new ContentDispositionParser(value);
}