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 pane
Asked
Active
Viewed 2,404 times
0

Reegan Miranda
- 2,879
- 6
- 43
- 55
1 Answers
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

Community
- 1
- 1

ItachiUchiha
- 36,135
- 10
- 122
- 176
-
ok Thanks, i will try this solution but I am not redirect console output.I need communicate terminal in pane – Reegan Miranda Feb 20 '14 at 11:23
-
You need the whole terminal inside a pane ? – ItachiUchiha Feb 20 '14 at 11:30