0

我正在使用 eclipse 并且必须没有正确的导入语句,我需要使用 RandomUtils 什么?

4

3 回答 3

1

apachecommons.jar应该在你的类路径中。

RandomUtils不是 sun java 的默认类。从 apache 网站下载 apache commons 并将其添加到您的类路径中。然后进行导入。

于 2012-07-13T18:56:11.397 回答
0

你需要

 import org.apache.commons.lang.math.RandomUtils;

在使用该类的任何类文件中。

您还需要确保 Apache Commons jar 在您的构建路径中

于 2012-07-13T18:56:43.260 回答
0

检查http://www.jarfinder.com

于 2012-07-13T18:59:25.833 回答