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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T11:08:16+00:00 2026-05-20T11:08:16+00:00

I am new to boost and c++ and is attempting to serialize an object

  • 0

I am new to boost and c++ and is attempting to serialize an object to binary and then unserialize it.

I’m using the classes from the example in: http://en.highscore.de/cpp/boost/serialization.html

So suppose this is the class I am trying to serialize:

class person 
{ 
public: 
  person() { } 

  person(int age) : age_(age) {  } 

  int age() const { return age_; } 

private:
  friend class boost::serialization::access;

  template <typename Archive>
  void serialize(Archive &ar, const unsigned int version)
  {
    ar & age_;
  }

  int age_;
}; 

This is the serialization code:

const char * save(Object ss)
{
    boost::archive::binary_oarchive oa(ss);
    person p(31);
    oa << p;

    return ss.str().data();
}

This is the unserialization code:

void load(const char * str)
    {

        stringstream s;
        s << str;

        boost::archive::binary_iarchive ia(s);
        person p;
        ia >> p;
        std::cout << p.age() << std::endl;

    }

When I attempt to run this code, I receive this error:

terminate called after throwing an instance of 'boost::archive::archive_exception'
  what():  stream error

Which brings me to ask, is there a proper way of doing this?

Thanks, much appreciated.

EDIT:
This version works:

This is the serialization code:

string save()
{
    boost::archive::binary_oarchive oa(ss);
    person p(31);
    oa << p;

    return ss.str();
}

This is the unserialization code:

void load(string str)
    {

        stringstream s;
        s << str;

        boost::archive::binary_iarchive ia(s);
        person p;
        ia >> p;
        std::cout << p.age() << std::endl;

    }

EDIT2:
This version does not work. Would appreciate comments on a fix. Thanks.

void Serialization::save()
{
    stringstream ss;
    {
        boost::archive::binary_oarchive oa(ss);
        person p(31);
        oa << p;
     }


        const char * temp1 = ss.str().data();

        stringstream s;
        s << temp1;

        cout << "UNSERIALIZING\n";
        boost::archive::binary_iarchive ia(s);
        person p1;
        ia >> p1;
        std::cout << p1.age() << std::endl;

}
  • 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-20T11:08:17+00:00Added an answer on May 20, 2026 at 11:08 am

    Using binary archives with std::stringstream is allowed, as any character can be stored in a std::stringstream/std::string.

    The problem is passing around the resulting data as a null terminated C-string, as binary data is highly likely to have embedded nulls thus upon load your data will be truncated. Additionally, your save function is returning data pointing into a destroyed object, invoking undefined behavior.

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

Sidebar

Related Questions

I'm new in using boost and have a problem. I need shared_mutex function in
What are the differences in using boost:thread, Posix Thread library and the new C++11
I'm attempting to create a list of objects using the variant boost. #include <string>
I am creating a new boost::thread using boost::bind , and storing it in a
I'm attempting to use boost::date_time to parse a date string (obtained from the Twitter
I'm using the new Boost 1.44.0 MSM library to produce a state machine. In
I am new to boost - can you please tell me what are the
I'm new to boost, and thought I'd try it out with some realistic deployment
I am working with the new version of boost 1.42 and I want to
I'm very new to c++ and boost. I'm trying to get the host name

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.