Java - gov.nasa.jpf.jvm.验证探路者包不存在

发布于 2024-11-04 22:04:34 字数 296 浏览 0 评论 0原文

我正在尝试使用 Java Pathfinder 并且我的 Pathfinder 正在工作。

import gov.nasa.jpf.jvm.Verify;
user.java:2: 包 gov.nasa.jpf.jvm 不存在
导入 gov.nasa.jpf.jvm.Verify;

我需要使用Verify.random 函数。谁能告诉我如何解决这个问题?我不太明白我假设的 URL 的输入是如何工作的。

I am attempting use Java Pathfinder and I have pathfinder working.

import gov.nasa.jpf.jvm.Verify;
user.java:2: package gov.nasa.jpf.jvm does not exist
import gov.nasa.jpf.jvm.Verify;

I need to use the Verify.random function. Can anyone tell me how to resolve this problem? I don't really understand how the importation of what I am assuming is a URL works.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

少女的英雄梦 2024-11-11 22:04:34

使用过 Java Pathfinder 一段时间后,我知道它不是一个小程序,正如其他答案所担心的那样。

您收到此错误是因为 Java Pathfinder jar 文件不在您的类路径上。这是完整的 Java Pathfinder 入门教程可以帮助其他人访问这个旧线程。

Having used Java Pathfinder some time back, I know that its not an applet as the other answer worries.

You are getting this error because the Java Pathfinder jar files are not on your classpath. Here is a complete Java Pathfinder Getting Started tutorial that could help others coming to this old thread.

〃安静 2024-11-11 22:04:34

它根本不是一个 URL(除非是小程序,而且您没有提到小程序)。编译运行时需要将Pathfinder jar放入类路径中,通过-cp转为javac和java。

如果是小程序就更复杂了。

It's not a URL at all (except in the case of applets, and you didn't mention an applet). You need to put the Pathfinder jar in the classpath when compiling and running, via -cp to javac and java.

If it's an applet, it's more complex.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文