.java 文件未 运行 正确使用 mac 终端常用 java 命令
.java file not running properly using mac Terminal usual java commands
我正在尝试 运行 this link 中的程序(特别是 Plotter.java)。在 zip 文件中有关于如何 运行 他们,但他们不工作。我已经阅读了关于 运行ning 终端的 java 文件的其他问题,我已经应用了这些解决方案,但 none 在这个文件上工作,尽管我有 运行 其他代码没有任何问题(java -dir 或 javac )。
我如何 运行 这个程序?
我还想在 eclipse 控制台或 eclipse 中制作的 GUI 中 运行 它(绘图仪)
.
p.s:我没有包含任何代码,因为该程序大约有 10 类,而且我是 java 的新手。
我试图查看代码,似乎您需要在命令行中提供 double 而您不需要,因此它尝试读取空的 args 数组。尝试在 class 的名称后写你在命令行中执行三个双打,它应该比
如果你想运行在eclipse中一样,使用Eclipse的菜单:运行 -> 运行 配置 -> Java 应用程序 -> 鼠标右键单击-> 新建 -> 参数 -> 添加一些你需要的参数。
请仔细阅读说明文件,它解释了一切。
鉴于您发布的例外情况,问题是因为您没有提供 java 正确的参数。该程序至少需要三个双精度参数。
他们是:
minX (the first argument)
maxX (the second argument)
frequency (the third argument).
根据 .zip 中随附的说明:
绘图方程:
java PlotEq <min-x> <max-x> <sample-rate> <Expression>
Where:
min-x: is the minimum value of x to begin plotting
max-x: is the maximum value of x to plot up to.
sample-rate: how close points are plotted to eachother. A sample rate of 0.1 is generally acceptable, it means take a sample of the graph at 0.1, 0.2, 0.3, 0.4, etc. Basically determines how much detail to include in the plot
Expression: the equation to plot
example:
java PlotEq -5 5 0.01 "sin(x)"
plots sin(x) between x=-5 and 5, taking samples every 0.01 steps in x.
问题是因为缺少 min-x、max-x 和采样率的参数。
我正在尝试 运行 this link 中的程序(特别是 Plotter.java)。在 zip 文件中有关于如何 运行 他们,但他们不工作。我已经阅读了关于 运行ning 终端的 java 文件的其他问题,我已经应用了这些解决方案,但 none 在这个文件上工作,尽管我有 运行 其他代码没有任何问题(java -dir 或 javac )。 我如何 运行 这个程序? 我还想在 eclipse 控制台或 eclipse 中制作的 GUI 中 运行 它(绘图仪) .
p.s:我没有包含任何代码,因为该程序大约有 10 类,而且我是 java 的新手。
我试图查看代码,似乎您需要在命令行中提供 double 而您不需要,因此它尝试读取空的 args 数组。尝试在 class 的名称后写你在命令行中执行三个双打,它应该比
如果你想运行在eclipse中一样,使用Eclipse的菜单:运行 -> 运行 配置 -> Java 应用程序 -> 鼠标右键单击-> 新建 -> 参数 -> 添加一些你需要的参数。
请仔细阅读说明文件,它解释了一切。
鉴于您发布的例外情况,问题是因为您没有提供 java 正确的参数。该程序至少需要三个双精度参数。
他们是:
minX (the first argument)
maxX (the second argument)
frequency (the third argument).
根据 .zip 中随附的说明: 绘图方程:
java PlotEq <min-x> <max-x> <sample-rate> <Expression>
Where:
min-x: is the minimum value of x to begin plotting
max-x: is the maximum value of x to plot up to.
sample-rate: how close points are plotted to eachother. A sample rate of 0.1 is generally acceptable, it means take a sample of the graph at 0.1, 0.2, 0.3, 0.4, etc. Basically determines how much detail to include in the plot
Expression: the equation to plot
example:
java PlotEq -5 5 0.01 "sin(x)"
plots sin(x) between x=-5 and 5, taking samples every 0.01 steps in x.
问题是因为缺少 min-x、max-x 和采样率的参数。