gpt4 book ai didi

java - 在 Wicket 中的新窗口中打开 HTML 页面

转载 作者:行者123 更新时间:2023-12-01 13:44:57 25 4
gpt4 key购买 nike

我有一个按钮(或链接),如果单击它,我想打开一个 HTML 文件。但我没有该文件,我只有 HTML 文件的字节数组。如果我单击打开按钮,如何在新窗口中打开它以显示 HTML 文件?谢谢!

最佳答案

您应该制作显示 html 页面内容的 servlet。示例:

public void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException  {

resp.setContentType("text/html");

// implement your page generations business logic in getHtmlPage
InputStream htmlPage = getHtmlPage();
OutputStream out = resp.getOutputStream();

// Copy the contents of the file to the output stream
byte[] buf = new byte[1024];
int count = 0;
while ((count = in.read(buf)) >= 0) {
out.write(buf, 0, count);
}
in.close();
out.close();
}

我不知道你到底如何确定必须显示哪个页面,所以我将其封装到 getHtmlPage 方法中。最简单的方法是对页面进行缓存并传输到servlet页面的 key 中。

关于java - 在 Wicket 中的新窗口中打开 HTML 页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20426925/

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