Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to make a function which gets the highlighted text from the active textfield and stores it in a string in Java?

share|improve this question
2  
What have you tried? Where are you stuck? Please post the relevant code you wrote. – Oded Nov 15 '12 at 12:30
can't write any code. i have created a form and inserted some text fields in it. now i have created a button for copy. i want this button ot perform copy selected text function but how can i get the active text field's info so i that i can get highlighted text from it.? – user1826602 Nov 17 '12 at 12:58

closed as not a real question by Oded, Tom Seidel, Ragunath Jawahar, Jamey Sharp, Collin Nov 15 '12 at 19:03

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

JTextField inherits the method getSelectedText() from JTextComponent.

Let's say you create your TextField like this:

JTextField tf = new JTextField()

The you can get the selected text like this:

String selectedText = tf.getSelectedText()

P.S.: Always check out the Java API documentation first if you are searching for a specific function.

share|improve this answer
What if i have many text fields and i have to get text from one that is being edited at the moment? how will i know? – user1826602 Nov 17 '12 at 12:59
@user1826602 You can do that with the function getFocusOwner from java.awt.Window which is inherited by JFrame for example. To make sure that you get a reference to JTextField you can check that by using instanceof. Need an example? – das_weezul Nov 17 '12 at 15:31
Yes please. I am a beginner and a student. An example would be a lot helpful. Thank you – user1826602 Nov 19 '12 at 5:35

Not the answer you're looking for? Browse other questions tagged or ask your own question.