- 浏览: 78031 次
- 性别:
- 来自: 合肥
最新评论
-
lslsday:
djggggggggggggggggggggggggggggg ...
简单的Ckeditor--实现上传的功能 -
jps7777777:
fdsgfds
Ckeditor简单的数据提交
文章列表
这是对于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 ...
JFReeChart学习--柱状图(根据页面的选择)
- 博客分类:
- 报表
根据页面的请求,来觉得前台显示的图片的类型
HistogramWebJDBC.java
/**
* 连接数据库
*
* @return
* @throws Exception
*/
public static Connection getConnection() throws Exception {
String url = "jdbc:mysql://localhost:3306/mydatabase";
Strin ...
jFreechart学习--柱状图
- 博客分类:
- 报表
后台的代码和前台的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 = { "猪肉", "牛肉", "鸡肉 ...
JfreeChart学习---jsp柱状图
- 博客分类:
- 报表
这个代码主要是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--柱状图简单实例
- 博客分类:
- 报表
现在学习jfreeChart,所以在网上查找了一些实例,综合之后的结构
public class Histogram {
public static void main(String[] args) {
// 创建柱状图
DefaultCategoryDataset dataset = new DefaultCategoryDataset();
// 装载数据
dataset.setValue(6, "Profit", "Jane");
dataset.setValue(3, "Profit2&quo ...
连接数据库的时候出的错误
- 博客分类:
- 错误处理
在进行一些数据库的操作中,数据库的加包是很重要的,在运行程序是时候,在控制台中出现了如下的错误:
这个错误出现的原因是少添加了一个包,就是如下的包 添加以后,程序就可以正常运行了