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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T07:55:10+00:00 2026-05-29T07:55:10+00:00

What I am doing is reading a xml file and trying to add a

  • 0

What I am doing is reading a xml file and trying to add a child node to a given xml file. But the problem is, it is not showing properly in the file here is the code:

xmlDocPtr doc;
xmlNodePtr nodeptr=NULL , node = NULL , node_child =NULL;
doc = xmlParseFile("Mainfile.xml");
if (doc == NULL ) {
fprintf(stderr,"Document not parsed successfully. \n");
return;
}
nodeptr = xmlDocGetRootElement(doc);
if (nodeptr == NULL) {
fprintf(stderr,"empty document\n");
xmlFreeDoc(doc); 
return;
}
if (xmlStrcmp(nodeptr->name, (const xmlChar *) "story")) {
fprintf(stderr,"document of the wrong type, root node != story");
xmlFreeDoc(doc);
return;
}

node = xmlNewNode( NULL, BAD_CAST "Account" );
xmlNewProp(node, BAD_CAST "id", BAD_CAST "A001");
xmlAddChild(nodeptr , node);

node_child = xmlNewChild(node, NULL, BAD_CAST "Country",BAD_CAST "US");
xmlAddChild(node,node_child);
xmlAddChild(nodeptr , node);


node_child = xmlNewChild(node, NULL, BAD_CAST "City", BAD_CAST "ABC");
xmlAddChild(node,node_child);
xmlAddChild(nodeptr , node);

node_child = xmlNewChild(node, NULL, BAD_CAST "ZIP",BAD_CAST "34040");
xmlAddChild(node,node_child);
xmlAddChild(nodeptr , node);

xmlSaveFile("Mainfile.xml", doc);
xmlFree(doc);  

And the structure of given xml file is

< ?xml version="1.0"? >  
< Project >  
       < author >John Fleck< /author >  
       < datewritten >June 2, 2002< /datewritten >  
       < keyword >example keyword< /keyword >  
       < Account id = "A000" >  
           < Country >UK< /Country >  
           < City >XYZ< /City >  
           < Zip >67688< /Zip >  
       < /Account >  
< /Project >  

and after using my code the xml showing the content in below format

< ?xml version="1.0"? >   
< Project >  
       < author >John Fleck< /author >  
       < datewritten >June 2, 2002</datewritten>  
       < keyword >example keyword< /keyword >    
       < Account id = "A000" >   
           < Country >UK< /Country >    
           < City >XYZ< /City >    
           < Zip >67688< /Zip >    
        < /Account >  
        < Account id = "A001" >< Country >US< /Country >< City >ABC< /City >< Zip >34040< /Zip >< /Account >< /Project >    

The main problem is it is not adding the child node with proper indentation.

Can anyone suggest me what I’m doing wrong?

  • 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-29T07:55:11+00:00Added an answer on May 29, 2026 at 7:55 am

    The structure of your XML output didn’t come through, but to get proper indentation, try using xmlSaveFormatFile and use 1 for the format. Also call xmlKeepBlanksDefault(0) before your whole XML stuff and I believe it should give the indentation you want (without actually being able to see what you’re looking for).

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

Sidebar

Related Questions

I am trying to parse xml file and get no errors but when trying
Hi friends hope all r doing well. I have a problem while reading xml
Hi friends hope all r doing well. I have a problem while reading xml
I create a XML String on the fly (NOT reading from a file). Then
I am reading a raw audio file (CD track rip) in, doing byte swapping,
Doing the below will reproduce my problem: New WPF Project Add ListView Name the
I am trying to read a XML document with C#, I am doing it
I've been doing some reading up on XML serialization, and from what I understand,
I am taking an XML file and reading it into various strings, before writing
Can someone point me to what am I doing wrong here? I'm trying to

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.