Click here to Skip to main content
15,886,660 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
C++
FILE *fp =fopen("Engine//Validation.txt","a");
      //   char *buffer;
        // string resultString;
   xmlValidCtxt context;
      context.userData = (void *) stderr;
    context.error = (xmlValidityErrorFunc)fprintf;
      context.warning  = (xmlValidityWarningFunc)fprintf;
     // sprintf(buffer,"ABC");
     //  resultString.append(buffer);
      xmlDoc	*doc = xmlReadFile(fileName.c_str(), NULL, 0);

      xmlDtd  *dtd = xmlParseDTD((const xmlChar *)dtdFileName.c_str(), (const xmlChar *)dtdFileName.c_str());


      int retval = xmlValidateDtd(&context,doc,dtd);


    char convertedString[10];
   itoa(retval,convertedString,10);

   result.append("\nValidation of the file: " + fileName + " with dtd: " + dtdFileName + "\n" + "Result: " + convertedString +"\n");

   fprintf(fp,result.c_str());
  
   fclose(fp);



I have written this code for validate xml with dtd,
I want print error and worning into external .txt file using file pointer how to print it? Help me...
Posted
Updated 30-Aug-12 21:18pm
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900