- 论坛徽章:
- 0
|
先谢谢大家!!!
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.
请问如何解决?? |
|