`
文章列表

Fckeditor

这是对于Fckeditor的学习,主要是在网上查找了一些相关的资料,然后把他总结起来   在项目下的src下新建一个fckeditor.properties fckeditor.properties #Fckeditor setting#用户上传文件路径目录connector.userFilesPath=/userUploadFileconnector.userActionImpl=net.fckeditor.requestcycle.impl.UserActionImpl   WebContent下新建两个网页 分别是index.jsp index.jsp <%@ pa ...

折线图

package line; import java.awt.Font; import org.jfree.chart.ChartFactory; import org.jfree.chart.ChartFrame; import org.jfree.chart.JFreeChart; import org.jfree.chart.axis.CategoryAxis; import org.jfree.chart.axis.NumberAxis; import org.jfree.chart.plot.CategoryPlot; import org.jfree.chart.p ...

饼形图

 Jfree.java package pie; import java.awt.Font; import java.awt.RenderingHints; import org.jfree.chart.ChartFactory; import org.jfree.chart.ChartFrame; import org.jfree.chart.JFreeChart; import org.jfree.chart.plot.PiePlot; import org.jfree.data.general.DefaultPieDataset; import org.jfree.u ...
 根据页面的请求,来觉得前台显示的图片的类型 HistogramWebJDBC.java /** * 连接数据库 * * @return * @throws Exception */ public static Connection getConnection() throws Exception { String url = "jdbc:mysql://localhost:3306/mydatabase"; Strin ...
后台的代码和前台的jsp页面结合起来,然后在web页面中显示出柱状图片 后台代码: public static JFreeChart createChart() { double[][] data = new double[][] { { 1310, 1220, 1110, 1000 }, { 720, 700, 680, 640 }, { 1130, 1020, 980, 800 }, { 440, 400, 360, 300 } }; String[] rowKeys = { "猪肉", "牛肉", "鸡肉 ...
这个代码主要是jsp页面中完成的,没有涉及到后台的的代码 <%@page import="org.jfree.chart.title.TextTitle"%> <%@page import="org.jfree.chart.axis.NumberAxis"%> <%@page import="org.jfree.chart.axis.CategoryAxis"%> <%@ page con ...
 现在学习jfreeChart,所以在网上查找了一些实例,综合之后的结构 public class Histogram { public static void main(String[] args) { // 创建柱状图 DefaultCategoryDataset dataset = new DefaultCategoryDataset(); // 装载数据 dataset.setValue(6, "Profit", "Jane"); dataset.setValue(3, "Profit2&quo ...
  在进行一些数据库的操作中,数据库的加包是很重要的,在运行程序是时候,在控制台中出现了如下的错误:    这个错误出现的原因是少添加了一个包,就是如下的包 添加以后,程序就可以正常运行了
Global site tag (gtag.js) - Google Analytics