免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2532 | 回复: 1
打印 上一主题 下一主题

jfreechart实现timeserieschart同一时间点值重复如何解决??在线等待.. [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-02-11 10:30 |只看该作者 |倒序浏览
先谢谢大家!!!
public void addData(TimeSeries ts){
            
            double originalValue = 100D;
            double lastValue;
            if(ts!=null){
                while(true){
                       try{
                                     //说明:在此处添加具体的业务数据

                                     //随机产生曲线的数据
                                     double d = 2.0D * Math.random();
                                     lastValue = originalValue * d;
                                     Millisecond millisecond = new Millisecond();
                                     //System.out.println("Series Now=" + millisecond.toString()+"\t lastValue=="+lastValue);
                                     ts.add(millisecond, lastValue);
                                    

                                     Thread.sleep(500);
                       }catch(InterruptedException e){}
                }
            }

调用此方法的时候,出现错误,提示如下:
ou are attempting to add an observation for the time period Wed Feb 11 10:19:32 CST 2009 but the series already contains an observation for that time period. Duplicates are not permitted.  Try using the addOrUpdate() method.

请问如何解决??

论坛徽章:
0
2 [报告]
发表于 2009-02-11 11:11 |只看该作者
看到有的例子中使用了ts.clear()。但是发现问题依旧!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP