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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T03:21:42+00:00 2026-05-24T03:21:42+00:00

I try to create simple file upload service in C++. I get all user

  • 0

I try to create simple file upload service in C++. I get all user request body as one big string. User can upload any type of data. I need to get only user file contents from request boby string.

so for example now I have next code working with my service API provider:

std::cout << "Request body: " << request->body << std::endl << "Request size: " <<  request->body.length() << std::endl;

and this would print as:

Request body: ------WebKitFormBoundaryAZlJcLinxYi6OCzX
Content-Disposition: form-data; name="datafile"; filename="crossdomain.xml"
Content-Type: text/xml

я╗┐<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-
omain-policy.dtd">
<cross-domain-policy>
  <allow-access-from domain="*" to-ports="*" />
</cross-domain-policy>
------WebKitFormBoundaryAZlJcLinxYi6OCzX--

Request size: 411

So I need to get from request->body (which is string) all data from first /r/n/r/n until last line -2 lines. How to do such thing with string in C++?

  • 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-24T03:21:43+00:00Added an answer on May 24, 2026 at 3:21 am

    This isn’t the most elegant approach, but one option would be to do something like this:

    std::string contents = /* ... get the string ... */
    
    /* Locate the start point. */
    unsigned startPoint = contents.find("\r\n\r\n");
    if (startPoint == string::npos) throw runtime_error("Malformed string.");
    
    /* Locate the end point by finding the last newline, then backing up
     * to the newline before that.
     */
    unsigned endPoint = contents.rfind('\n');
    if (endPoint == string::npos || endPoint == 0) throw runtime_error("Malformed string.");
    endPoint = contents.rfind('\n', endPoint - 1);
    if (endPoint == string::npos) throw runtime_error("Malformed string.");
    
    /* Hand back that slice of the string. */
    return std::string(contents.begin() + startPoint, contents.begin() + endPoint);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to create a simple file upload form and I must be completely
I try to create simple web service with CXF, Jetty and Spring. I create
When I try to create a new Maintenance Plan in SQL Server, I get
In my application, the user selects a big file (>100 mb) on their drive.
Im trying to create a simple dll file.Im following the tutorial http://java.sun.com/docs/books/jni/html/start.html when i
This is simple, but not working. I am trying to create a temp file
When I try to create a SQL Server Login by saying CREATE LOGIN [ourdomain\SQLAccessGroup]
When I try to create a new RegionInfo with certain ISO 3166 country codes
When I try to create a Excel 2007 Workbook project, in Visual Studio 2008,
When I try to create a Excel or Word workbook project in VS, I

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.