本文整理匯總了Java中javax.servlet.http.Part.getName方法的典型用法代碼示例。如果您正苦於以下問題:Java Part.getName方法的具體用法?Java Part.getName怎麽用?Java Part.getName使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類javax.servlet.http.Part
的用法示例。
在下文中一共展示了Part.getName方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: getPostMap
import javax.servlet.http.Part; //導入方法依賴的package包/類
public static Map<String, byte[]> getPostMap(HttpServletRequest request) throws IOException {
Map<String, byte[]> map = new HashMap<>();
Map<String, String[]> pm = request.getParameterMap();
if (pm != null && pm.size() > 0) {
for (Map.Entry<String, String[]> entry: pm.entrySet()) {
String[] v = entry.getValue();
if (v != null && v.length > 0) map.put(entry.getKey(), v[0].getBytes(StandardCharsets.UTF_8));
}
} else try {
request.setAttribute("org.eclipse.jetty.multipartConfig", multipartConfigElement); // without that we get a IllegalStateException in getParts()
final byte[] b = new byte[1024];
for (Part part: request.getParts()) {
String name = part.getName();
InputStream is = part.getInputStream();
final ByteArrayOutputStream baos = new ByteArrayOutputStream();
int c;
try {while ((c = is.read(b, 0, b.length)) > 0) {
baos.write(b, 0, c);
}} finally {is.close();}
map.put(name, baos.toByteArray());
}
} catch (IOException | ServletException | IllegalStateException e) {
Data.logger.debug("Parsing of POST multipart failed", e);
throw new IOException(e.getMessage());
}
return map;
}