This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Threads and Synchronization and the fly likes Multithreading with text input and Swing Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Threads and Synchronization
Reply Bookmark "Multithreading with text input and Swing" Watch "Multithreading with text input and Swing" New topic
Author

Multithreading with text input and Swing

Martin Ivanov
Greenhorn

Joined: Nov 06, 2012
Posts: 1
Hey guys,
I have a lot of problems with the threads. I have a task: you have a textarea and 3 threads : the first one gets the chars, the second - the words, the third - the sentences. My problem is that it should be done in real time - as long as the user inputs, in the same the three thread must do their job and print in 3 windows. I made it - but the problem is that the threads runs only after hitting enter when you finish writing text.
Can you give me some help how can I do it ? Thanks
Steve Luke
Bartender

Joined: Jan 28, 2003
Posts: 3036
    
    4

This is most likely a swing question, and you didn't TellTheDetails so anything I suggest is just a guess. Provide more info if this doesn't apply.

You are probably using an ActionListener to listen for changes in the text area, if you want to listen to every key press you should either use a key listener or key bindings on the text area.
http://docs.oracle.com/javase/tutorial/uiswing/events/keylistener.html
http://docs.oracle.com/javase/tutorial/uiswing/misc/keybinding.html


Steve
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: Multithreading with text input and Swing
 
Similar Threads
Thread that gets the value from 3 Threads
Manage Threads Websphere Application Servers
why collections.binarysearch() returns wrong output for 1st 2 index position ?
Where is the Context Switch Effect in Java?
Adjust font size according to resolution change (or different screen size)