java.util.NoSuchElementException 的问题

java.util.NoSuchElementExceptionatcom.google.common.collect.AbstractIterator.next(Abs... java.util.NoSuchElementException
at com.google.common.collect.AbstractIterator.next(AbstractIterator.java:154)
at com.google.common.collect.Iterators.find(Iterators.java:712)
at com.google.common.collect.Iterables.find(Iterables.java:643)
at com.fulongkeji.huagang.service.impl.PointServiceImpl.getDPointBySendName(PointServiceImpl.java:35)
at com.fulongkeji.huagang.bean.CalculateEquipmentRuntimeJob.calcRuntime(CalculateEquipmentRuntimeJob.java:88)
at com.fulongkeji.huagang.bean.CalculateEquipmentRuntimeJob.executeInternal(CalculateEquipmentRuntimeJob.java:50)
at org.springframework.scheduling.quartz.QuartzJobBean.execute(QuartzJobBean.java:66)
at org.quartz.core.JobRunShell.run(JobRunShell.java:216)
at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:549)

int newRuntime = 0;
try {
newRuntime = calcRuntime(mapping, calcFromTime(currentTime), currentTime);
}
catch (NoSuchElementException e) {
e.printStackTrace();--程序都会走这儿
continue;
}
if (newRuntime == 0)
continue;
展开
 我来答
baoer1127
2014-03-27 · TA获得超过926个赞
知道小有建树答主
回答量:939
采纳率:71%
帮助的人:339万
展开全部
@GwtCompatible
public abstract class AbstractIterator<T> extends UnmodifiableIterator<T> {
// 下面是源码
  @Override
  public final T next() {
    if (!hasNext()) {
      throw new NoSuchElementException();
    }
    state = State.NOT_READY;
    T result = next;
    next = null;
    return result;
  }

你都看到了。hasNext() 没有值呗。你看看你的集合呗。

追问
point= Iterables.find(allDPoints, new Predicate() { public boolean apply(DPoint point) {
if (sendName.equals(point.getPointSendName().trim()))return true else return false;
追答

return sendName.equals(point.getPointSendName().trim()) ;

还有

    private static void test_afs() {
        final String sendName = "asldjf";
        List allDPoints = new ArrayList();
        DPoint point = new DPoint();
        point.setPointSendName("asldjf");
        allDPoints.add(point);
        try {
            point = Iterables.find(allDPoints, new Predicate<DPoint>() {
                public boolean apply(DPoint point) {
                    return sendName.equals(point.getPointSendName().trim());
                }
            });
            System.out.println(point);
        } catch (NoSuchElementException e) {
            // 本身就没有你查的对象
        }
    }

如果你查询到了。就能显示。如果没有你查询到的对象。就抛出异常。所以首先你自己加上一个try/catch。

本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2014-03-27
展开全部
类里面,没有某个方法

PointServiceImpl.java:35
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
ScriptErrors
2014-03-27 · TA获得超过422个赞
知道小有建树答主
回答量:210
采纳率:100%
帮助的人:138万
展开全部
PointServiceImpl.java文件35行出错 可能是在这个类里面没有找到calcRuntime这个方法
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式