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

  • Home
  • SEARCH
  • 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 4597850
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T23:18:57+00:00 2026-05-21T23:18:57+00:00

I am trying to build a chat client that uses JTextPane to display the

  • 0

I am trying to build a chat client that uses JTextPane to display the conversations. I am having problems with highlighting the past sentences of a chat-participant chosen by the user. When implementing this I need to stick to using HTMLDocument as some of the content has to be HTML.

The best idea seemed to be using a different named styles for each user participating in the conversation. The idea is that when the text of a particular person needs to be highlighted, I just update his personal style and everything he has said should get highlighted as by magic. Unfortunately this does not work.

So to add text I use:

public void addMessage(String from, String message){
    HTMLDocument doc = (HTMLDocument) textPane.getStyledDocument();
    if(doc != null){
        try {
            String stylename = "from_" + from;
            if(textPane.getStyle(stylename) == null){
                LOG.debug("Did not find style. Adding new: " + stylename);
                Style nameStyle = textPane.addStyle(stylename, null);
                StyleConstants.setForeground(nameStyle, Color.black);
                StyleConstants.setBold(nameStyle, true);
            }else{
                LOG.debug("Found existing style: " + textPane.getStyle(stylename));
            }
            doc.insertString(doc.getLength(), from + ": ", textPane.getStyle(stylename));
            doc.insertString(doc.getLength(), message + "\n", null);
        } catch (BadLocationException ble) {
            LOG.error("Could not insert text to tab");
        }
    }
}

So far so good… The text gets displayed in the textPane as I wished. However when I try to update the stylesheet at some future point and call:

public void highlight(String name, boolean highlight){
    Style fromStyle = textPane.getStyle("from_" + name);
    if(fromStyle != null){
        LOG.debug("found style, changing color");
        StyleConstants.setForeground(fromStyle, Color.red);
    }else{
        LOG.debug("fromStyle was NULL");
    }
}

..I can see that the style is found and my code gets executed – yet nothing changes on the screen.

I would like to ask if you have any suggestions on how I might try to resolve this issue. Is there a way to make this work with named styles or should I take some completely different approach?

Thank you

  • 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-21T23:18:58+00:00Added an answer on May 21, 2026 at 11:18 pm

    You just modified the Style object, you still have to apply the modified Style using setCharacterAttributes.

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

Sidebar

Related Questions

I'm trying con build a simple chat client/software (whole in on executable) wich start
I'm trying build an App Engine connected Android application and am having some problems
I am trying to build a bluetooth chat application using j2me. I created a
I'm trying to build a site that runs without refreshes, using Jquery and PHP
I have a std::vector< tr1::shared_ptr<mapObject> > that I'm trying build from data contained in
Trying to build dynamic output from json and using jq/template tmpl display rows/columns. Somehow
I am trying build small webcam chat (web application). I searched on google and
i am trying to build a simple chat system but I'm not sure what
I am trying to build a messaging/chat system. which can store conversation between two
I'm trying build a regex that will replace any characters not of the format:

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.