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 7191571
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T19:45:29+00:00 2026-05-28T19:45:29+00:00

I have code to fetch characters from a StAX parser using eventReader. The code

  • 0

I have code to fetch characters from a StAX parser using eventReader. The code looks like this:

private String getNextCharacters(XMLEventReader eventReader) throws XMLStreamException {
    StringBuilder characters = new StringBuilder();
    XMLEvent event = eventReader.nextEvent();

    String data = event.asCharacters().getData();
    characters.append(data);

    while (eventReader.peek() != null && eventReader.peek().isCharacters()) {
        event = eventReader.nextEvent();
        data = event.asCharacters().getData();
        characters.append(data);
    }

    return characters.toString();
}

The while loop is because occasionally the asCharacters is not coalesced between adjacent isCharacters events. This seems to be independent of the is_coalescing flags being set or not. This seemed like a reasonable workaround but it seems to have driven a secondary bug. Occasionally I see ]]> appended to my character string. This is very infrequent–about once in 5000 lines of XML but it happens consistently. Debugging I find that it happens in the second isCharacters event when the first event is CDATA. The parser seems to lose track of the CDATA instruction by the second event.

So, has anyone else seen this? Does anyone have a better workaround than simply stripping ]]> off the end of my string? I didn’t find anything significant online or here.

  • 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-28T19:45:30+00:00Added an answer on May 28, 2026 at 7:45 pm

    Instead of

    data = event.asCharacters().getData();
    

    you could go

    Characters characters = event.asCharacters();
    data = characters.getData();
    
    if(characters.isCData()) {
    /* handle CDATA */
    } else if (characters.isWhiteSpace()) {
    /* handle whitespace*/
    } else if (characters.isIgnorableWhiteSpace()) {
    /* handle ignorable whitespace*/
    }
    

    HTH,
    Max

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

Sidebar

Related Questions

I have a simple code to fetch users from db using sqlalchemy and return
I have code like this: var newMsg = new Msg { Var1 = var1,
I have code like this: template <typename T, typename U> struct MyStruct { T
I have code like this to move the player in my game left, right,
If I have code like this (irrelevant things like initialising the connection and handle
I have the following code to fetch the data from URL, store it in
I have the following code to fetch the data from URL, store it in
I currently have the below code to fetch data from my Entity framework model.
I have this code to fetch profile pictures and messages: $(document).ready(function() { var url
I have this code while($row = mysql_fetch_row($result)) { echo '<tr>'; $pk = $row[0]['ARTICLE_NO']; foreach($row

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.