Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7004855
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T21:15:11+00:00 2026-05-27T21:15:11+00:00

in C# there is an event for textboxes as follows private void fooText_TextChanged(object sender,

  • 0

in C# there is an event for textboxes as follows

private void fooText_TextChanged(object sender, EventArgs e)
{
    //do something 
}

the code in the fooText_TextChanged is fired once the text within the textbox is altered.

What is the java equivalent to this? Or how can something similar to this be achieved in java?

Thanks for any feedback/help/advice.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T21:15:12+00:00Added an answer on May 27, 2026 at 9:15 pm

    For Swing, If you wanted to be notified after the text component’s text had changed, you’d use a DocumentListener that was added to the JTextComponent’s Document. e.g.,

      JTextField myField = new JTextField();
    
      myField.getDocument().addDocumentListener(new DocumentListener() {
    
         public void removeUpdate(DocumentEvent e) {
            // TODO add code!
    
         }
    
         public void insertUpdate(DocumentEvent e) {
            // TODO add code!
    
         }
    
         public void changedUpdate(DocumentEvent e) {
            // TODO add code!
    
         }
      });
    

    If on the other hand, you wanted to check text before it has been committed to the text component, you’d add a DocumentFilter to the JTextComponent’s Document.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there an event that is fired when the user presses the close button?
Is there an event in WinForms that get's fired when a window is dragged?
I have a MyControl class. Inside MyClass object there are textboxes and a checkbox.
I want to let TextBox control TextChanged event fire only when there are more
Is there an event like onLoad? just at closing the Site (onClose)?
Is there an event that fires when a WCF service gets started or shut
Is there an event I can use to tell if a child form has
Is there any event like OnValidate in LINQ where I can add my business
Is there an event in jqGrid when a user uses the column dialog to
Is there an event that I can tap into in Global.asax to execute some

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.