0

How to get graphical terminal in javafx pane. In my project, I have debug button is there,click that button graphical terminal open in my pane.if any package is there are give to idea, how to make are bind terminal in my paneenter image description here

Reegan Miranda
  • 2,879
  • 6
  • 43
  • 55

1 Answers1

0

If I get your question correctly then you want to forward all the terminal data to a textArea/Pane. You can use JavaFX UI inplace of swing. Please follow the following link :

How to redirect all console output to a GUI textbox?

For using the whole terminal inside the pane, you may consider using "Process" and "Runtime" to get the behaviour that you desire from a console.

You may also find this intersting

http://code.google.com/p/dragonconsole/wiki/DragonConsole

Community
  • 1
  • 1
ItachiUchiha
  • 36,135
  • 10
  • 122
  • 176