Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
708 views
in Technique[技术] by (71.8m points)

java - Is it OK to use AWT with JavaFx?

I need some functionality that I cannot find currently in JavaFX. Like the Robot or the Tray Icon.

I know these tools do work with JavaFx applications. But is it ok to use them? Are there any considerations that I should care of?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Generally it's not advised.

N.B.:

  • using any AWT from JavaFX will start whole AWT stack which can increase memory/proc consumption.
  • there could be threading conflicts between Glass (FX UI stack) and AWT, especially on Mac. So it maybe worth using Swing Interoperability approach for your app as JFXPanel is aware how to handle that conflicts.
  • you can use Glass robot instead of AWT one (although it's not public API and may be changed in future):

    Robot robot = com.sun.glass.ui.Application.GetApplication().createRobot();
    robot.mouseMove(10, 30);
    robot.mousePress(1);
    

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...