我正在创建一个需要图片上传功能的应用程序。我一直关注this教程和App Engine Documentation。
正确上传图像,服务器重定向到FileUpload HttpServlet的doPost函数。我可以从请求中读取blob密钥并将其保存在数据存储区中。
我的问题是将回复发送回客户端。我所看到的一切都指向使用response.sendRedirect函数,但这还没有成功。
public class FileUpload extends HttpServlet
{
public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
{
BlobstoreService blobstoreService = BlobstoreServiceFactory.getBlobstoreService();
Map<String, List<BlobKey>> blobs = blobstoreService.getUploads(request);
BlobKey blobKey = blobs.get("picFileUpload").get(0);
ShipHull shipHull = new ShipHull();
shipHull.setShipHullName(request.getParameter("hullNameText"));
shipHull.setShipImageURL("/shipbuilder/blobService?blob-key=" + blobKey.getKeyString());
PersistenceManager pm = PMF.get().getPersistenceManager();
try
{
pm.makePersistent(shipHull);
}
catch (Exception e)
{
String hi = "hello";
}
finally
{
pm.close();
}
Boolean test = response.isCommitted();
response.sendRedirect("/shipbuilder/FileUpload?gwt.codesvr=127.0.0.1:9997&shipHullName=" + shipHull.getShipHullName());
test = response.isCommitted();
return;
}
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException
{
String id = req.getParameter("shipHullName");
resp.setHeader("Content-Type", "text/html");
resp.getWriter().println(id);
}
}
我正在尝试将客户端重定向到同一个servlet中的doGet。我尝试了这个,没有gwt.codesvr=127.0.0.1:9997
和shipHullName=" + shipHull.getShipHullName())
但是从未达到过doGet函数。我也试过https://www.google.com
。
这一切都是在开发服务器上完成的(尚未在生产服务器上试过)。
如果你有任何其他方法可以返回图像保存的状态(比如已经采用了文件名),我不介意尝试不同的东西。
谢谢!
答案 0 :(得分:0)
您可以尝试将成功/失败的字符串放入resp对象。
public void doPost( HttpServletRequest req, HttpServletResponse resp ) throws ServletException, IOException
{
try{
processFileUploads(req)
resp.getWriter().print( "Success" );
}{
catch(Exception e){
resp.getWriter().println( "Unable to upload the file - Upload Failed" );
}
}
答案 1 :(得分:0)
我已经找到了问题所在。我想我遇到的问题与this post相同。
我必须点击GWT开发模式工具箱图标并添加网络服务器“ammo-box”(我的计算机名称“和代码服务器”为“127.0.0.1”。当我将浏览器定向到该开发链接时,它所有工作,甚至你给SSR的答案。这是一个域切换问题。
感谢您的帮助。