gpt4 book ai didi

java - jsp中的jfreechart

转载 作者:行者123 更新时间:2023-11-30 04:44:49 25 4
gpt4 key购买 nike

我想使用 jfree 图表在 jsp 中创建饼图,我正在使用此代码

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">

<%@ page import="java.awt.*" %>
<%@ page import="java.io.*" %>
<%@ page import="org.jfree.chart.*" %>
<%@ page import="org.jfree.chart.entity.*" %>
<%@ page import ="org.jfree.data.general.*"%>
<%
final DefaultPieDataset data = new DefaultPieDataset();
data.setValue("One", new Double(43.2));
data.setValue("Two", new Double(10.0));
data.setValue("Three", new Double(27.5));
data.setValue("Four", new Double(17.5));
data.setValue("Five", new Double(11.0));
data.setValue("Six", new Double(19.4));

JFreeChart chart = ChartFactory.createPieChart
("Pie Chart ", data, true, true, false);

try {
final ChartRenderingInfo info = new
ChartRenderingInfo(new StandardEntityCollection());

final File file1 = new File("../webapps/jspchart/
web/piechart.png");
ChartUtilities.saveChartAsPNG(
file1, chart, 600, 400, info);
} catch (Exception e) {
out.println(e);
}
%>
<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
<IMG SRC="piechart.png" WIDTH="600" HEIGHT="400"
BORDER="0" USEMAP="#chart">
</body>
</html>

问题是我收到此异常“java.io.FileNotFoundException:../webapps/jspchart/web/piechart.png(没有此类文件或目录)”

有什么想法吗?

最佳答案

异常清楚地显示“java.io.FileNotFoundException:../webapps/jspchart/web/piechart.png(没有这样的文件或目录)

此处的 piechart.png(../webapps/jspchart/web/piechart.png) 或 web 目录不存在。

验证这些信息并修复它。

修复可以是:-

  1. jspchart 文件夹下创建一个 Web 文件夹或
  2. piechart.png 文件放置在 Web 文件夹下

然后再次尝试编译并运行应用程序。

关于java - jsp中的jfreechart,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11281656/

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