在ZK中获取Servlet输出流
对于 Servlet,
protected void doGet(HttpServletRequest req, HttpServletResponse resp){
resp.getOuputStream().write(somthing);
}
上面给出了 Servlet 输出流,ZK 中是否有任何方法可以执行相同的操作。
In case of Servlets we have,
protected void doGet(HttpServletRequest req, HttpServletResponse resp){
resp.getOuputStream().write(somthing);
}
the above gives servlet output stream is there any way in ZK to do the same.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的真正用例是什么?
如果您在 html 中编写一些详细信息,
最好直接使用zk组件。
在某些情况下,您可以从执行中获得响应。
但我认为这不是一个好主意,在使用这种方法之前,请确保您知道自己到底在做什么。
最好提供您的用例而不是代码片段。
What's your real use-case for this ?
If you are writing some details in html ,
it's better to use zk component directly.
In some case you could get the response from the execution.
But I don't think that's a good idea, be sure you know what you are exactly doing before you use this approach.
It's better to provide your use-case instead of code snippets.
我使用 ZK 组件找到了这个解决方案:
ZK-打开新窗口
I found this solution, using ZK components:
ZK-opens-new-window