在ZK中获取Servlet输出流

发布于 2024-12-25 03:20:07 字数 213 浏览 1 评论 0原文

对于 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

-小熊_ 2025-01-01 03:20:07

您的真正用例是什么?

如果您在 html 中编写一些详细信息,
最好直接使用zk组件。

在某些情况下,您可以从执行中获得响应。

((HttpServletResponse)Executions.getCurrent().getNativeResponse()).getOutputStream()

但我认为这不是一个好主意,在使用这种方法之前,请确保您知道自己到底在做什么。

最好提供您的用例而不是代码片段。

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.

((HttpServletResponse)Executions.getCurrent().getNativeResponse()).getOutputStream()

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.

听闻余生 2025-01-01 03:20:07

我使用 ZK 组件找到了这个解决方案:

 Clients.evalJavaScript("window.open('http://www.google.com','','top=100,left=200,height=600,width=800,scrollbars=1,resizable=1')");

ZK-打开新窗口

I found this solution, using ZK components:

 Clients.evalJavaScript("window.open('http://www.google.com','','top=100,left=200,height=600,width=800,scrollbars=1,resizable=1')");

ZK-opens-new-window

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文