gpt4 book ai didi

java - GWT-图像上传和GAE

转载 作者:行者123 更新时间:2023-12-01 19:04:34 26 4
gpt4 key购买 nike

我看过服务器端上传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来处理图片上传,你可以依靠BlobstoreImageService蜜蜂。 This tutorial有很好的解释和示例,我遵循了它,我的上传功能运行顺利。

关于java - GWT-图像上传和GAE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10605046/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com