问题标签 [jcreator]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
2435 浏览

java - 无法启动以下可执行文件,

启动以下可执行文件失败,\bin\javac.exe -g -classpath C:\Users\user\Documents -d C:\Users\user\Documents C:\Users\user\Documents\Kwame.java 求帮助,请参考http://www.jcreator.com/installation.htm

出于某种原因,无论我写什么代码,它都会继续这样做,我不知道为什么。

我该如何解决这个问题?

0 投票
1 回答
839 浏览

java - 为什么我不能在 JCreator 中使用 JavaFX?

我目前正在使用 JCreator 5.0 和 JDK 1.7.0_51。我在编码时没有遇到任何问题,这次我决定在 JavaFX 领域冒险,但似乎我无法达到它的任何内容。这是我按下“构建文件”按钮时遇到的错误:

所以,我的问题是:

  • 有什么我做错了吗?
  • 我错过了什么吗?

我实际上还没有编写任何代码,只是似乎导入不起作用。这是到目前为止的代码,顺便说一句,我猜是无关紧要的:

提前致谢!!

顺便说一句,javafx.stage.* 并不是唯一让我出错的东西,一般来说,来自 javafx.* 的任何东西都会做同样的事情:C,甚至“javafx.*”本身,我只是将它用作例子。干杯!

编辑:

我现在解决了!在阅读了他提供给我的帖子之后,我感谢@MadProgrammer 做到了!非常感谢=)它是如此简单!

所以我在阅读线程后发现我需要告诉 JCreator 存在这样的包,所以我在 JCreator 中执行了这些步骤:

  • 转到“配置”菜单
  • 然后是“选项”
  • 然后在左侧菜单中选择“JDK Profiles”
  • 然后选择我的“JDK version 1.7.0_51”配置文件
  • 然后单击“编辑...”按钮
  • 然后在“类”选项卡中单击“添加”按钮
  • 然后选择“添加存档”
  • 然后去我的“C:\Program Files\Java\jdk1.7.0_51\jre\lib”文件夹选择“jfxrt.jar”
  • 最后打开它,点击“Ok”、“Ok”等。和沃利亚!没有更多的错误!

太长了,没看:在 JCreator Options 中将“jfxrt.jar”添加到我的 JDK Profile =)

非常感谢!

我将尽快发布此作为答案,由于声望点不够,我只需要等待几个小时,大家欢呼!

0 投票
2 回答
6975 浏览

java - Beginner 2D-Array out of bounds exception

I'm having some difficulties trying to figure out how to implement a second array to calculate the averages of my marks program. I'm using 1 2D array to store the scores each student received on each assignment (5 students, 4 assignments). I have managed to get the Students average array working but when I go to calculate each individual assignment mark (combined total of the 5 students /5 ). I keep getting an Indexoutofbounds exception, Im very new to 2d arays and am still trying to figure out how to read them properly. Heres my code:

assignAvgArray[row] += assignments[row][col];

}

i've bolded where java says the error is coming from. I am trying to read in, store, and then calculate for the array spots [[(0,0),(1,0),(2,0),(3,0),(4,0)],[(0,1),(1,1),(2,1),(3,1),(4,1)..etc]]

what Im trying to ask is how can I create a loop that doesn't give me this exception, storing all the values of each column into separate spots, and dividing each number stored in the new array by 5 to give me the average.

if there's anything else I can do to help you understand my problem please let me know.

PS: This is what It's supposed to look like;

I've calculated the row average but the bolded column average is giving me grief

0 投票
2 回答
1027 浏览

java - Java初学者:程序无法编译;收到错误信息

我刚刚开始学习和使用java。我尝试创建一个简单的票务程序:

但我不断收到此错误消息:

我正在使用 JCreator,在“构建输出”下显示“流程已完成”,但没有显示任何错误。但上面的错误是我在“一般输出”下得到的。任何帮助将不胜感激,请记住,我对此很陌生。

0 投票
2 回答
493 浏览

java - 使用 JCreator 的 Java 所得税程序出错

我收到一个错误,说我使用的变量之一未初始化,但在查看代码后,我意识到我实际上已经初始化了变量,所以我不明白为什么我不断收到错误。

这是错误:

这是代码:

任何帮助将不胜感激。

0 投票
3 回答
288 浏览

java - Java初学者:尽管过程已完成,但在Java中的常规输出下出现消息

我编写了一个程序来显示猜出罐子中最接近的弹珠数量的人的 id 号。这是程序:

这是输入文件“promo.txt”中的数据:
258
0001 200
0002 198
0003 430
0004 12
0005 30
0006 45
0007 154
0008 250
0009 120
0

现在,我使用 JCreator,当我尝试编译时,在“构建输出”下,我没有收到任何错误和“处理完成”,但在“通用输出”下,这就是我得到的:

此外,未创建输出文件“winner.txt”。当谈到 java 时,我是一个新手,但任何帮助将不胜感激。

0 投票
1 回答
260 浏览

maven - maven 是否支持除 eclipse 之外的任何 IDE?

我在创建程序时使用 JCreator 而不是 Eclipse,我只是想问一下 maven 是否支持除 eclipse 之外的不同 IDE?

谢谢。

0 投票
1 回答
324 浏览

java - Java 中的匿名内部类不起作用。为什么?

有问题的课程是这样的。如您所见,它非常简单。只是为了了解匿名内部类的工作原理。在这种情况下,我收到 4 个错误,提示找不到符号 WaterLevel 和 ChlorineLevel。你能看出这有什么问题吗?

0 投票
2 回答
166 浏览

java - 如何将成员添加到团队

我希望程序在切换案例完成或结束后返回菜单,但我不知道该怎么做。这是我的代码。例如,当用户选择了他/她的选择并且他/她已经执行了它时,程序会自动关闭,但我不希望它继续直到用户希望退出程序。请帮助我不知道该怎么办

0 投票
1 回答
62 浏览

java - 显示 team1 和 team2 中的所有名称

这是情况。用户将通过用户输入在 team1 和 team2 中插入名称,然后程序将显示 TEAM1 和 TEAM2 的所有名称。我的显示方法有问题,因为它们只显示 Team1 中的名称。我想要做的是显示 team1 和 team2 中的所有名称。我是编程新手,我真的很难学习。到目前为止,这是我的代码。