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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T18:59:56+00:00 2026-05-25T18:59:56+00:00

We have a program which runs on Windows and Linux. It writes out std::wstrings

  • 0

We have a program which runs on Windows and Linux. It writes out std::wstrings in binary to a file. We need to be able to read in files written from linux into windows. We write out strings as a list of wchar_t. On linux each wchar_t occupies 4 bytes. On Windows each wchar_t occupies 2 bytes.

When reading the file written by linux into Windows how can one take the four byte wchar_t and put it into the 2 byte wchar_t?

Thanks,
Adam

  • 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-25T18:59:57+00:00Added an answer on May 25, 2026 at 6:59 pm

    You can use UTF8-CPP to easily convert the file from UTF-32 to UTF-16:

    #include <fstream>
    #include <iterator>
    #include <utf8.h>
    
    int main(int argc, char** argv) {
    
        std::ifstream file("source.txt");
        std::string   intermediate;
        std::wstring  result;
    
        utf8::utf32to8(std::istreambuf_iterator<char>(file),
                       std::istreambuf_iterator<char>(),
                       std::back_inserter(intermediate));
    
        utf8::utf8to16(intermediate.begin(),
                       intermediate.end(),
                       std::back_inserter(result));
    
    }
    

    Unfortunately there is no utf8::utf32to16, though perhaps there should be.

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

Sidebar

Related Questions

I need to create a utility program which runs on windows mobile. I need
I have a Windows Service written in Delphi which runs a number of programs.
I have an MPI program which compiles and runs, but I would like to
I have a python program, which runs on the CPython implementation, and inside it
I have a program which needs installing on windows 64 boxes. Most of the
I have a program which runs on a console and its Umlauts and other
I have a program which needs to behave slightly differently on Tiger than on
I have a program which deliberately performs a divide by zero (and stores the
I have a program which has some Textareas / Labels these can be anywhere
I have a program which only needs a NotifyIcon to work as intended. So

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.