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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T21:55:24+00:00 2026-06-09T21:55:24+00:00

In a loop I am reading a stream, that is encoded as UTF-8, 10

  • 0

In a loop I am reading a stream, that is encoded as UTF-8, 10 bytes (say) in every loop. As the stream is being passed to a buffer first, I must specify its read length in bytes before transforming it to a UTF-8 string. The issue that I am facing is that sometimes it will read partial, incomplete characters. I need to fix this.

Is there a way to detect if a string ends with an incomplete character, or some check that I can perform on the last character of my string to determine this?

Preferably a “non single-encoding” solution would be the best.

  • 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-06-09T21:55:26+00:00Added an answer on June 9, 2026 at 9:55 pm

    If a buffer ends with an incomplete character and you convert it into a string and then initialize a new buffer from that string, the new buffer will be a different length (longer if you’re using utf8, shorter if you’re using ucs2) than the original.

    Something like:

    var b1=new Buffer(buf.toString('utf8'), 'utf8');
    if (b2.length !== buf.length) {
       // buffer has an incomplete character
    } else {
       // buffer is OK
    }
    

    Substitute your desired encoding for ‘utf8’.

    Note that this is dependent on how the current implementation of Buffer#toString deals with incomplete characters, which isn’t documented, though it’s unlikely to be changed in a way that would result in equal-length buffers (a future implementation might throw an error instead, so you should probably wrap the code in a try-catch block).

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

Sidebar

Related Questions

I'm having an issue reading from a java input stream. I have a buffer
I am reading from a NetworkStream that is in a while loop. The issue
I'm running a while loop reading each line in a file, and then fork
The while loop I have while reading in from a file doesn't break. I'm
Today I was reading Floyd's algorithm of detecting loop in a linked list. I
/// \todo Loop must be rewritten ... /// \todo Delete this loop Can Doxygen
Sometimes when reading a socket from the TcpClient class , the stream comes in
I'm reading Introduction to Algorithm by CLRS. In chapter 2, the authors mention loop
I was reading something about boolean attribute here , which says that for a
I'm creating a GUI application that can monitor and manipulate a stream of messages.

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.