Just like the title says, I'm trying to put an xterm window in a JFrame. Is it possible to wrap any application in a JFrame? Anytime I search for putting a console in a JFrame it comes up with a Java Console which is much different.
Welcome to the Java Programming Forums
The professional, friendly Java community. 21,500 members and growing!
The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.
>> REGISTER NOW TO START POSTING
Members have full access to the forums. Advertisements are removed for registered users.
Just like the title says, I'm trying to put an xterm window in a JFrame. Is it possible to wrap any application in a JFrame? Anytime I search for putting a console in a JFrame it comes up with a Java Console which is much different.
What is an xterm window? Is it a java class? A component that can be added to a container?
It's a linux console. Equivilent to running 'cmd' in windows.
Is it a java class?
If its not a java component, how would you add "it" to a java container like JFrame?
It is not a java class. It is an application. I was wondering if Java has a wrapper that you can embed any executable.
I just found bean shell which should give me the functionality I need.