作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我看过服务器端上传code example ...它说下一步...
...
/**
* Get the content of an uploaded file.
*/
@Override
public void getUploadedFile(HttpServletRequest request, HttpServletResponse response) throws IOException {
String fieldName = request.getParameter(UConsts.PARAM_SHOW);
File f = receivedFiles.get(fieldName);
if (f != null) {
response.setContentType(receivedContentTypes.get(fieldName));
FileInputStream is = new FileInputStream(f);
copyFromInputStreamToOutputStream(is, response.getOutputStream());
} else {
renderXmlResponse(request, response, XML_ERROR_ITEM_NOT_FOUND);
}
}
...
...好的,正如我所看到的,为了获取文件,代码片段使用 File 对象。但是,据我记得,GAE 不支持 File io 对象。所以我的问题是这个库对于 GAE 文件上传来说还可以,还是有一些更适合 GWT 的库?
谢谢
最佳答案
GAE中不需要使用Java IO来处理图片上传,你可以依靠Blobstore和 ImageService蜜蜂。 This tutorial有很好的解释和示例,我遵循了它,我的上传功能运行顺利。
关于java - GWT-图像上传和GAE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10605046/
我有以下正则表达式 /[a-zA-Z0-9_-]/ 当字符串只包含从 a 到z 大小写、数字、_ 和 -。 我的代码有什么问题? 能否请您向我提供一个简短的解释和有关如何修复它的代码示例? //var
我是一名优秀的程序员,十分优秀!