gpt4 book ai didi

javax.imageio.IIOException : Can't create output stream!(在 Java 中)

转载 作者:行者123 更新时间:2023-11-29 08:17:33 26 4
gpt4 key购买 nike

我在这段代码中遇到以下异常,请帮帮我,

javax.imageio.IIOException: Can't create output stream! 

de.laures.cewolf.ChartRenderingException: Can't create output stream!

javax.servlet.jsp.JspException: Can't create output stream!

at de.laures.cewolf.taglib.tags.ChartMapTag.doStartTag(ChartMapTag.java:117)

代码如下

 try {
Dataset dataset = PageUtils.getDataset(chartId, pageContext);
Writer out = pageContext.getOut();
final boolean isIE = BrowserDetection.isIE((HttpServletRequest) pageContext.getRequest());
if (hasToolTips()) {
enableToolTips(out, isIE);
}
out.write("<MAP name=\"" + chartId + "\">\n");
ChartRenderingInfo info = (ChartRenderingInfo) root.getRenderingInfo();
Iterator entities = info.getEntityCollection().iterator();
while (entities.hasNext()) {
ChartEntity ce = (ChartEntity) entities.next();
out.write("\n<AREA shape=\"" + ce.getShapeType() + "\" ");
out.write("COORDS=\"" + ce.getShapeCoords() + "\" ");
if (ce instanceof XYItemEntity)
{
dataset = ((XYItemEntity)ce).getDataset();
}
if (!(ce instanceof LegendItemEntity)) {
if (hasToolTips()) {
writeOutToolTip(dataset, out, isIE, ce);
}
if (hasLinks()) {
writeOutLink(linkGenerator, dataset, out, ce);
}
}
out.write(">");
}

最佳答案

我是 cewolf 项目的维护者,我刚刚上传了一个可能会解决这个问题的新版本 (1.1.1)。试一试,让我们知道结果如何。如果问题仍然存在,请前往 JavaRanch 上的“其他开源项目”论坛;这就是我支持 cewolf 的地方。

关于javax.imageio.IIOException : Can't create output stream!(在 Java 中),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3465144/

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