我们正在使用 ICEFaces 1.8,我想转发到新的 URL,但希望它在新窗口中打开。我们目前能够执行重定向到新窗口,如下所示:
public static void redirectToUrl(String urlPath) {
if (urlPath != null) {
try {
final String url = FacesUtil.getContextPath() + urlPath;
final StringBuffer jsCommand = new StringBuffer();
jsCommand.append("window.document.location.href='").append(url).append("';");
JavascriptContext.addJavascriptCall(FacesContext.getCurrentInstance(), jsCommand.toString());
} catch (Exception e) {
throw new RuntimeException(e);
}
}
}
但是可以使用类似的方法进行前锋吗?