本文整理汇总了Java中org.apache.tomcat.util.http.fileupload.util.FileItemHeadersImpl类的典型用法代码示例。如果您正苦于以下问题:Java FileItemHeadersImpl类的具体用法?Java FileItemHeadersImpl怎么用?Java FileItemHeadersImpl使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
FileItemHeadersImpl类属于org.apache.tomcat.util.http.fileupload.util包,在下文中一共展示了FileItemHeadersImpl类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: getParsedHeaders
import org.apache.tomcat.util.http.fileupload.util.FileItemHeadersImpl; //导入依赖的package包/类
/**
* <p> Parses the <code>header-part</code> and returns as key/value
* pairs.
*
* <p> If there are multiple headers of the same names, the name
* will map to a comma-separated list containing the values.
*
* @param headerPart The <code>header-part</code> of the current
* <code>encapsulation</code>.
*
* @return A <code>Map</code> containing the parsed HTTP request headers.
*/
protected FileItemHeaders getParsedHeaders(String headerPart) {
final int len = headerPart.length();
FileItemHeadersImpl headers = newFileItemHeaders();
int start = 0;
for (;;) {
int end = parseEndOfLine(headerPart, start);
if (start == end) {
break;
}
StringBuilder header = new StringBuilder(headerPart.substring(start, end));
start = end + 2;
while (start < len) {
int nonWs = start;
while (nonWs < len) {
char c = headerPart.charAt(nonWs);
if (c != ' ' && c != '\t') {
break;
}
++nonWs;
}
if (nonWs == start) {
break;
}
// Continuation line found
end = parseEndOfLine(headerPart, nonWs);
header.append(" ").append(headerPart.substring(nonWs, end));
start = end + 2;
}
parseHeaderLine(headers, header.toString());
}
return headers;
}
开发者ID:liaokailin,项目名称:tomcat7,代码行数:45,代码来源:FileUploadBase.java
示例2: parseHeaderLine
import org.apache.tomcat.util.http.fileupload.util.FileItemHeadersImpl; //导入依赖的package包/类
/**
* Reads the next header line.
* @param headers String with all headers.
* @param header Map where to store the current header.
*/
private void parseHeaderLine(FileItemHeadersImpl headers, String header) {
final int colonOffset = header.indexOf(':');
if (colonOffset == -1) {
// This header line is malformed, skip it.
return;
}
String headerName = header.substring(0, colonOffset).trim();
String headerValue =
header.substring(header.indexOf(':') + 1).trim();
headers.addHeader(headerName, headerValue);
}
开发者ID:liaokailin,项目名称:tomcat7,代码行数:17,代码来源:FileUploadBase.java
示例3: getParsedHeaders
import org.apache.tomcat.util.http.fileupload.util.FileItemHeadersImpl; //导入依赖的package包/类
/**
* <p>
* Parses the <code>header-part</code> and returns as key/value pairs.
*
* <p>
* If there are multiple headers of the same names, the name will map to a
* comma-separated list containing the values.
*
* @param headerPart
* The <code>header-part</code> of the current
* <code>encapsulation</code>.
*
* @return A <code>Map</code> containing the parsed HTTP request headers.
*/
protected FileItemHeaders getParsedHeaders(String headerPart) {
final int len = headerPart.length();
FileItemHeadersImpl headers = newFileItemHeaders();
int start = 0;
for (;;) {
int end = parseEndOfLine(headerPart, start);
if (start == end) {
break;
}
StringBuilder header = new StringBuilder(headerPart.substring(start, end));
start = end + 2;
while (start < len) {
int nonWs = start;
while (nonWs < len) {
char c = headerPart.charAt(nonWs);
if (c != ' ' && c != '\t') {
break;
}
++nonWs;
}
if (nonWs == start) {
break;
}
// Continuation line found
end = parseEndOfLine(headerPart, nonWs);
header.append(" ").append(headerPart.substring(nonWs, end));
start = end + 2;
}
parseHeaderLine(headers, header.toString());
}
return headers;
}
开发者ID:how2j,项目名称:lazycat,代码行数:47,代码来源:FileUploadBase.java
示例4: parseHeaderLine
import org.apache.tomcat.util.http.fileupload.util.FileItemHeadersImpl; //导入依赖的package包/类
/**
* Reads the next header line.
*
* @param headers
* String with all headers.
* @param header
* Map where to store the current header.
*/
private void parseHeaderLine(FileItemHeadersImpl headers, String header) {
final int colonOffset = header.indexOf(':');
if (colonOffset == -1) {
// This header line is malformed, skip it.
return;
}
String headerName = header.substring(0, colonOffset).trim();
String headerValue = header.substring(header.indexOf(':') + 1).trim();
headers.addHeader(headerName, headerValue);
}
开发者ID:how2j,项目名称:lazycat,代码行数:19,代码来源:FileUploadBase.java
示例5: getParsedHeaders
import org.apache.tomcat.util.http.fileupload.util.FileItemHeadersImpl; //导入依赖的package包/类
/**
* <p> Parses the <code>header-part</code> and returns as key/value
* pairs.
*
* <p> If there are multiple headers of the same names, the name
* will map to a comma-separated list containing the values.
*
* @param headerPart The <code>header-part</code> of the current
* <code>encapsulation</code>.
*
* @return A <code>Map</code> containing the parsed HTTP request headers.
*/
protected FileItemHeaders getParsedHeaders(String headerPart) {
final int len = headerPart.length();
FileItemHeadersImpl headers = newFileItemHeaders();
int start = 0;
for (;;) {
int end = parseEndOfLine(headerPart, start);
if (start == end) {
break;
}
String header = headerPart.substring(start, end);
start = end + 2;
while (start < len) {
int nonWs = start;
while (nonWs < len) {
char c = headerPart.charAt(nonWs);
if (c != ' ' && c != '\t') {
break;
}
++nonWs;
}
if (nonWs == start) {
break;
}
// Continuation line found
end = parseEndOfLine(headerPart, nonWs);
header += " " + headerPart.substring(nonWs, end);
start = end + 2;
}
parseHeaderLine(headers, header);
}
return headers;
}
开发者ID:WhiteBearSolutions,项目名称:WBSAirback,代码行数:45,代码来源:FileUploadBase.java
示例6: newFileItemHeaders
import org.apache.tomcat.util.http.fileupload.util.FileItemHeadersImpl; //导入依赖的package包/类
/**
* Creates a new instance of {@link FileItemHeaders}.
* @return The new instance.
*/
protected FileItemHeadersImpl newFileItemHeaders() {
return new FileItemHeadersImpl();
}
开发者ID:liaokailin,项目名称:tomcat7,代码行数:8,代码来源:FileUploadBase.java
示例7: newFileItemHeaders
import org.apache.tomcat.util.http.fileupload.util.FileItemHeadersImpl; //导入依赖的package包/类
/**
* Creates a new instance of {@link FileItemHeaders}.
*
* @return The new instance.
*/
protected FileItemHeadersImpl newFileItemHeaders() {
return new FileItemHeadersImpl();
}
开发者ID:how2j,项目名称:lazycat,代码行数:9,代码来源:FileUploadBase.java
注:本文中的org.apache.tomcat.util.http.fileupload.util.FileItemHeadersImpl类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论