我有一个应用程序,它成功地接收到来自用户的输入字符串,在服务器端进行处理,并在网页上显示结果。我把它实现为RemoteServiceServlet,因为这样我就可以轻松地处理所有的网站小工具。
尽管如此,我还是决定使用"内容处理附件"的可能性,而不是在网页上显示结果,这样用户就可以将处理后的字符串下载到txt文件中。
有没有一种方法可以在不将整个应用程序从RemoteServiceServlet更改为HttpServlet的情况下做到这一点?
在我的代码下面。非常感谢。
ProjectServiceImpl.java
public class ProjectServiceImpl extends RemoteServiceServlet implements ProjectService
{
public String project(String input) throws IllegalArgumentException
{
String output = processString(input);
// Below something I tried to do, but it does not work at all
try {
HttpServletResponse resp = getThreadLocalResponse();
resp.reset();
resp.setContentType("application/octet-stream");
resp.setContentLength(10);
resp.setHeader("Content-disposition", "attachment; filename="test.txt"");
ServletOutputStream op = resp.getOutputStream();
op.write(convertToByteArray(output),0,10);
op.flush();
op.close();
}
catch (IOException e) {
e.printStackTrace();
}
return output;
}
}
ProjectService.java
public interface ProjectService extends RemoteService {
String project(String name) throws IllegalArgumentException;
}
ProjectServiceAsync.java
public interface ProjectServiceAsync {
void project(String input, AsyncCallback<String> callback)
throws IllegalArgumentException;
}
MyProject.java:客户端
[...]
projectService.project(originalString, new AsyncCallback<String>() {
[...]
public void onSuccess(final String result)
{
[...] // Or perhaps should I create here in client-side the txt file with "result"
}
});
与其更改为另一个servlet,不如考虑使用其中一个servlet-RPC用作传输的XmlHttpRequest不能用于下载文件,但对于几乎所有到服务器的请求来说仍然非常方便。XHR只适用于从javascript到服务器的通信,不能用于下载(或其他事情,例如用内容打开新窗口)。
考虑制作另一个servlet,并让RPC调用返回一个字符串,一个其他servlet的url(可能还有一些其他参数来指示应该下载什么)。