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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T18:02:46+00:00 2026-05-27T18:02:46+00:00

I am building an Android app that parses an RSS feed using SAX parser.

  • 0

I am building an Android app that parses an RSS feed using SAX parser. When I print the title, I only get the first character of it.

public void characters(char ch[], int start, int length)
    {       

        String theString = new String(ch,start,length);
        //Log.i("RSSReader","characters[" + theString + "]");

        switch (currentstate)
        {
            case RSS_TITLE:
                _item.setTitle(theString);
                Log.i("tag","Length:"+length);
                currentstate = 0;
                break;
                }
       }

Here, the log says that the length is 1 always. This even happens with the description. Before it was working with another feed, now its got trouble when I switched to another feed.
Here is example title tag:

<title>&quot;The Color of the Night is not always Black II_(Explored Highest Position #1)&quot; by xris74</title>

What I get printed on screen is " that is (quote)

Thanks in advance!

EDIT 1:
I added up string builder.

1. Added new string builder variable:
StringBuilder newString;
2. On Element Start, if its title
newString = new StringBuilder();
3. On Element End, if its title
_item.setTitle(newString.toString());
4. In characters function, if its title tag, than:
newString.append(ch,start,length);
  • 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-27T18:02:47+00:00Added an answer on May 27, 2026 at 6:02 pm

    The characters() function can be called many times after the start tag and before the end tag. Each time it brings you some bytes but not necessarily all the bytes at once in one call.

    So you can create a StringBuilder in onStartTag function. Then append to that StringBuilder every time you enter the characters function. Then when you enter onEndTag function for this tag your StringBuilder will have all the characters.
    What to append is determined by the offset and length parameters of the characters function

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

Sidebar

Related Questions

I'm building an Android app that is basically an RSS reader, with different topics
I'm building an Android app that resizes based on the screen size using different
I am building an Android app for webradio. I am using vitamio player that
I'm building my first android app - something that will display my tweets in
I'm building an Android app that runs off of a rails server. At first,
I'm building an Android app that parses a pretty big XML file (around 500
I am building an Android app that communicates with a remote server to get
I'm building and Android app that needs to go through steps like a wizard.
I am building an Android app. For that i want to show image at
I'm building an Android app using Eclipse. If I have a single Drawable folder

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.