- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 JavaFX 应用程序,它可以在屏幕上为机器人(黑点)设置动画,并在它们去过的任何地方在浅灰色背景上绘制一条小白线(想想 Tron)。为此,我保留了机器人和所有白色像素的所有坐标。机器人的行为由实现 Runnable 的不同线程控制,并且可以在模拟运行时更改。机器人坐标存储在 HashMap 中,坐标是扩展 Point 的类,并使用 double 来提高 x 和 y 值的内部计算精度。对于白点,我使用 HashMap,因为整数精度足以满足它们,因为它们不会移动并无限期地停留在屏幕上的 x 和 y 坐标处。
现在程序运行得很好,但是当存储白点点的 HashMap 增长时,应用程序的 JavaFX 线程崩溃的可能性越来越大(想想看,更具体地说,它只是机器人所在的 Canvas )绘制。)控件的 slider 保持响应,并且迭代的文本字段和 HashMap 的大小不断更新。但没有任何动画,几秒钟后 Canvas 变成白色。增加 Thread.sleep(ms) 的 ms 可以使程序更加稳定,但速度已经非常慢了。而且,这种情况在我的慢速学校上网本(运行 Win XP)上比在我的家用台式电脑(运行 Win7 64 位)上发生得更频繁、更快。异常(exception)也有不同的。对于台式电脑,如下:
java.lang.InternalError: Unrecognized PGCanvas token: 68
at com.sun.javafx.sg.prism.NGCanvas.renderStream(NGCanvas.java:651)
at com.sun.javafx.sg.prism.NGCanvas.renderContent(NGCanvas.java:320)
at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:187)
at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:39)
at com.sun.javafx.sg.BaseNode.render(BaseNode.java:1145)
at com.sun.javafx.sg.prism.NGGroup.renderContent(NGGroup.java:204)
at com.sun.javafx.sg.prism.NGRegion.renderContent(NGRegion.java:420)
at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:187)
at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:39)
at com.sun.javafx.sg.BaseNode.render(BaseNode.java:1145)
at com.sun.javafx.tk.quantum.ViewPainter.doPaint(ViewPainter.java:117)
at com.sun.javafx.tk.quantum.AbstractPainter.paintImpl(AbstractPainter.java:175)
at com.sun.javafx.tk.quantum.PresentingPainter.run(PresentingPainter.java:73)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
at java.util.concurrent.FutureTask$Sync.innerRunAndReset(FutureTask.java:351)
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:178)
at com.sun.prism.render.RenderJob.run(RenderJob.java:37)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
at com.sun.javafx.tk.quantum.QuantumRenderer$PipelineRunnable.run(QuantumRenderer.java:98)
at java.lang.Thread.run(Thread.java:724)
对于上网本来说:
java.lang.IllegalArgumentException: alpha value out of range
at java.awt.AlphaComposite.<init>(AlphaComposite.java:624)
at java.awt.AlphaComposite.getInstance(AlphaComposite.java:689)
at java.awt.AlphaComposite.derive(AlphaComposite.java:761)
at com.sun.prism.j2d.J2DPrismGraphics.setExtraAlpha(J2DPrismGraphics.java:569)
at com.sun.javafx.sg.prism.NGCanvas.renderStream(NGCanvas.java:739)
at com.sun.javafx.sg.prism.NGCanvas.renderContent(NGCanvas.java:389)
at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:201)
at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:40)
at com.sun.javafx.sg.BaseNode.render(BaseNode.java:1145)
at com.sun.javafx.sg.prism.NGGroup.renderContent(NGGroup.java:204)
at com.sun.javafx.sg.prism.NGRegion.renderContent(NGRegion.java:420)
at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:201)
at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:40)
at com.sun.javafx.sg.BaseNode.render(BaseNode.java:1145)
at com.sun.javafx.tk.quantum.ViewPainter.doPaint(ViewPainter.java:117)
at com.sun.javafx.tk.quantum.AbstractPainter.paintImpl(AbstractPainter.java:182)
at com.sun.javafx.tk.quantum.PresentingPainter.run(PresentingPainter.java:73)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
at java.util.concurrent.FutureTask$Sync.innerRunAndReset(FutureTask.java:351)
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:178)
at com.sun.prism.render.RenderJob.run(RenderJob.java:37)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
at com.sun.javafx.tk.quantum.QuantumRenderer$PipelineRunnable.run(QuantumRenderer.java:108)
at java.lang.Thread.run(Thread.java:722)
任何解决或缩小此问题范围的帮助将不胜感激。
编辑:正如所建议的,我将添加一个仍然存在问题的代码的最小示例。主要方法位于类 Visualizer 中,用于绘制模拟区域
import java.awt.Point;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import javafx.application.Application;
import javafx.geometry.Rectangle2D;
import javafx.scene.Scene;
import javafx.scene.canvas.Canvas;
import javafx.scene.canvas.GraphicsContext;
import javafx.scene.layout.BorderPane;
import javafx.scene.paint.Color;
import javafx.stage.Screen;
import javafx.stage.Stage;
public class Visualizer extends Application {
private static GraphicsContext gc;
private static Canvas canvas;
private static BorderPane pane;
private static Scene scene;
private static Thread thread;
private static Simulator sim = new Simulator();
private static int optionsWidth = 200;
private static HashSet<Point> manganCollected = new HashSet<Point>();
private static HashMap<Integer, Coordinates> coordinates = new HashMap<Integer, Coordinates>();
private static final int zoom = 4;
private static Point cmpP;
/**
* Height in pixels that's available to draw the simulation on dependent on used monitor resolution
*/
public static double simHeight;
/**
* Width in pixels that's available to draw the simulation on dependent on used monitor resolution
*/
public static double simWidth;
/**
* Launches the JavaFX application
* @param args command line arguments if there are any
*/
public static void main(String[] args) {
launch(args);
}
/**
* Sets up the GUI with all options and the canvas to draw the robots on
*/
@Override
public void start(Stage stage) throws Exception {
// Determine screen width of the monitor
Screen screen = Screen.getPrimary();
Rectangle2D bounds = screen.getVisualBounds();
double screenHeight = bounds.getHeight();
double screenWidth = bounds.getWidth();
// set the stage
stage.setFullScreen(true);
stage.setHeight(screenHeight);
stage.setWidth(screenWidth);
stage.setTitle("Manganernte");
// Canvas to draw the simulation on
canvas = new Canvas();
simHeight = screenHeight;
simWidth = screenWidth - optionsWidth;
canvas.setHeight(simHeight);
canvas.setWidth(simWidth);
gc = canvas.getGraphicsContext2D();
gc = canvas.getGraphicsContext2D();
gc.setFill(Color.LIGHTGRAY);
gc.fillRect(0, 0, simWidth, simHeight);
gc.setStroke(Color.BLACK);
gc.setLineWidth(3);
gc.strokeRect(0, 0, simWidth, simHeight);
// BorderPane containing the buttons box and the Simulator canvas
pane = new BorderPane();
pane.setCenter(canvas);
// Scene containing the pane
scene = new Scene(pane);
// Show the whole stage
stage.setScene(scene);
stage.show();
thread = new Thread(sim);
thread.start();
}
/**
* Transforms double coordinates as used by the simulator (0/0 in the center) to monitor coordinates (0/0 top left corner)
* @param coordinates Floating point coordinates that should be transformed
* @return Coordinates Floating point coordinates that have been transformed
*/
private static Coordinates transform(Coordinates coordinates) {
return new Coordinates(Math.round((simWidth / 2) + (zoom * coordinates.getX())), Math.round((simHeight / 2) + (zoom * coordinates.getY())));
}
/**
* Transforms integer coordinates as used by the simulator (0/0 in the center) to monitor coordinates (0/0 top left corner)
* @param Point Integer coordinates that should be transformed
* @return Point Integer coordinates that have been transformed
*/
private static Point transform(Point point) {
return new Point((int)Math.round((simWidth / 2) + (zoom * point.getX())), (int)Math.round(((simHeight / 2) + (zoom * point.getY()))));
}
/**
* Clear the canvas by drawing a rectangle filled with light gray background
*/
private static void clear () {
gc.setFill(Color.LIGHTGRAY);
gc.fillRect(0, 0, simWidth, simHeight);
gc.setStroke(Color.BLACK);
gc.setLineWidth(3);
gc.strokeRect(0, 0, simWidth, simHeight);
}
/**
* Clears the canvas and then draws first the collected mangan as white rectangles followed by robots as black circles the given coordinates
* @param redraw boolean that's set to true if iteration hasn't changed but a redraw should be forced anyway (e.g. when simulation is paused and the zoom is used)
*/
public static void DrawRobots() {
coordinates = Simulator.coordinates;
manganCollected = Simulator.manganCollected;
// clear the canvas with light gray background
clear();
// draw harvested mangan as white dots
gc.setFill(Color.WHITE);
Iterator<Point> it = manganCollected.iterator();
while(it.hasNext()) {
cmpP = it.next().getLocation();
double x = transform(cmpP).getX();
double y = transform(cmpP).getY();
gc.fillRect(x, y, zoom, zoom);
}
// draw robots
gc.setFill(Color.BLACK);
for(int i = 1; i <= coordinates.size(); i++) {
double x = transform(coordinates.get(i)).getX();
double y = transform(coordinates.get(i)).getY();
gc.fillOval(x, y, zoom, zoom);
}
}
}
模拟器类:
import java.awt.Point;
import java.util.HashMap;
import java.util.HashSet;
public class Simulator implements Runnable {
// start variable declarations
// HashMap of all robot objects the simulator controls
private static HashMap<Integer, Robot> robots = new HashMap<Integer, Robot>();
// HashMap of all coordinate objects the simulator controls
public static HashMap<Integer, Coordinates> coordinates = new HashMap<Integer, Coordinates>();
// HashMap of all point objects containing the coordinates of places where the mangan has already been collected
public static HashSet<Point> manganCollected = new HashSet<Point>();
/**
* communication radius of the robots according to the requirements
*/
public static int processSpeed = 100;
// end variable declarations
/**
* Create a robot with x and y
* @param x x-coordinate
* @param y y-coordinate
*/
public static void createRobot(int x, int y) {
coordinates.put(coordinates.size() + 1, new Coordinates(x, y));
robots.put(robots.size() + 1, new Robot());
}
/**
* Checks the status, changes it if necessary and acts accordingly
*/
@Override
public void run() {
for(int i = 0; i < 100; i++) createRobot(i - 50, 0);
Visualizer.DrawRobots();
while(true) {
for(int i = 1; i <= robots.size(); i++) robots.get(i).think();
for(int i = 1; i <= robots.size(); i++) {
coordinates.get(i).add(robots.get(i).move());
manganCollected.add(new Point((int)Math.round(coordinates.get(i).getX()), (int)Math.round(coordinates.get(i).getY())));
}
Visualizer.DrawRobots();
try {
Thread.sleep(processSpeed);
} catch(InterruptedException e) {
e.printStackTrace();
}
}
}
}
最后,在这个最小的示例中,机器人类不再做太多事情了:
public class Robot {
Coordinates future = new Coordinates(0, 0);
public void think () {
future.setY(1.0);
}
public Coordinates move() {
return future;
}
}
更新刚刚安装了 JDK 8,现在的异常更能说明问题:
Exception in thread "Thread-4" java.lang.IllegalStateException: Not on FX application thread; currentThread = Thread-4
在网上搜索了一下,似乎我需要使用 Platform.runLater() 来避免这种情况发生。但我不知道该怎么做。我将尝试再次解释我的项目现在的结构:
我有类Visualizer,它扩展了Application,它还包括main()方法,并在GraphicsContext Canvas上绘制UI,包括模拟区域作为灰色矩形。 UI 完成后,它会创建一个实现 Runnable 的 Simulator 类线程。 Simulator 类中的 run() 方法进入 while(true) 循环。只要没有单击任何按钮,循环除了 thread.sleep() 之外什么也不做。如果单击开始按钮,则会执行一些计算,并调用 Visualizer 上的一些方法来在模拟 Canvas 上绘制内容。据我了解,这些调用会导致异常,因为它们是从非 JavaFX 线程发出的。
我是否必须使用 runLater() 来避免此问题,如果是的话,我应该在哪里以及如何执行此操作?
更新2最终通过将改变 UI/Canvas 任何内容的公共(public)方法的代码包装到 runLater block 中,使其稳定运行(据我现在所知)。
public static void drawStuff() {
Platform.runLater(new Runnable() {
@Override
public void run() {
// draw stuff
}
});
}
最佳答案
只是发布此内容,以便读者立即明显看出该问题实际上有答案/解决方案。
我遇到了同样的问题,正如作者最后指出的那样,他自己是“更新”。
如果您遇到此问题,您可能正在另一个线程中进行 ui Canvas 操作。您应该始终在应用程序线程上执行 ui 操作!使用
Platform.runLater(()->{
//your code
});
关于exception - JavaFX 线程崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21231557/
这个问题在这里已经有了答案: Python try...except comma vs 'as' in except (5 个回答) 关闭7年前。 在python中,有两种方法可以捕获异常 excep
在 Java 中,我有一个从 Exception 扩展的异常类,但是每当我抛出它时,编译器都会说它需要被捕获/必须声明方法 throws异常。 当我使用从 Exception 扩展的 RuntimeE
我有一组用户、组以及用户和组之间的映射。我有各种操作这些集合的函数,但是不能为不存在的用户添加用户组映射,也不能删除仍然有用户作为成员的组等。 所以基本上我希望这些函数抛出必须由调用者明确处理的“异常
我正在尝试使用上载控件上载20兆的文件,并且在Visual Studio的内置Web服务器上可以正常工作,但是一旦将其发布到生产服务器(我无权访问),我总是收到以下错误消息: Server Error
我想断言运行某些代码时会引发特定异常(SSLHandshakeException)。 assertThatThrownBy(() -> { // some code }).is
这个问题我暂时解决不了。我很乐意提供一些建议。 当我尝试抛出异常时(我自己创建了一个 Java 风格的异常) throw Exception (); 编译器提出抗议: DataTypes/Date.c
我有以下文件: from fabric.api import env, execute, run env.hosts = ['1.2.3.4'] def taskA(): run('ls')
我正在阅读一些包含类似于以下功能的源代码: def dummy_function(): try: g = 1/0 except Exception as e:
根据标准 ML 的定义(修订版): The idea is that dynamic evaluation of a non-expansive expression will neither gen
当 GHCi 在运行时发现调用产生的值与函数的模式匹配不匹配时,有没有办法让 GHCi 产生更好的异常消息? 它目前给出了产生非详尽模式匹配的函数的行号,虽然有时会有所帮助,但确实需要一轮调试,有时我
我有一个最佳实践问题。我意识到这是主观的,但想问问比我更聪明的人,这是否是一种常见的编程实践。 如果您有一种不希望干扰应用程序重要功能的非关键方法,那么使用这样的错误接收器是否常见? Try
在编程中,异常是否总是错误(被零除,访问冲突等等)? 如果不是,您能否提供不是错误的异常示例? 谢谢。 最佳答案 异常通常用于管理错误,它们使错误处理更加容易,但它们并不总是错误。 任何需要单独代码路
我很想知道 OCaml 运行时如何处理异常以使它们如此轻量。他们是使用 setjmp/longjmp 还是在每个函数中返回一个特殊值并传播它? 在我看来,longjmp会给系统带来一点压力,但只有在引
在我的 C# 代码中,我可以访问 MyNamespace.Exception 以及 System.Exception。当我想捕获其中一个异常时,理想情况下我会完全限定要捕获的异常或使用别名来明确说明。
我正在使用 Visual C++ 2005 Express Edition 并遇到以下链接器错误: 19>mylib1.lib(mylibsource1.obj) : error LNK2019: u
这个问题在这里已经有了答案: Is there "Break on Exception" in IntelliJ? (6 个回答) 关闭7年前。 我想在调试器中运行我的测试套件并中断任何意外异常,但是
Like in this picture 我知道它们都可以正常工作,但我只是想知道它们之间有何不同? PS:我是初学者。 最佳答案 A LogEvent可以同时包含消息和异常。如果您使用第一种形式:
我知道避免 Doctrine 上的异常似乎是一种奇怪的行为,但我需要这样做,因为我在一个旧项目中工作,过去有人执行了一些迁移,然后他决定删除它,所以现在复制起来很复杂本地生产环境没有崩溃,这就是为什么
我想创建一个名为 SecurityException 的新异常。 我应该把代码放在哪里? class SecurityException extends CakeException {}; 谢谢! 最
我一直在使用throw new Exception("...")在我的代码中,因为我找不到其他可以使用的东西。我正在寻找像 C++'s 这样的东西 out_of_range 和 logic_error
我是一名优秀的程序员,十分优秀!