libapp_4.c
上传用户:zlh9724
上传日期:2007-01-04
资源大小:1991k
文件大小:1k
源码类别:

浏览器

开发平台:

Unix_Linux

  1. #include "WWWLib.h"
  2. #include "WWWHTTP.h"
  3. #include "WWWMIME.h"
  4. int main (int argc, char ** argv)
  5. {
  6.     HTList * converters = HTList_new();
  7.     HTRequest * request = HTRequest_new();   /* Create a request object */
  8.     HTLibInit("TestApp", "1.0");
  9.     HTProtocol_add("http", YES, HTLoadHTTP, NULL);
  10.     HTConversion_add(converters, "text/x-http","*/*", HTTPStatus_new,
  11.      1.0, 0.0, 0.0);
  12.     HTConversion_add(converters, "message/rfc822", "*/*", HTMIMEConvert,
  13.      1.0, 0.0, 0.0);
  14.     HTFormat_setConversion(converters);
  15.     if (argc == 3 && *argv[2]) {
  16. FILE * fp;
  17. if ((fp = fopen(argv[2], "wb")) != NULL) {
  18.     HTRequest_setOutputFormat(request, WWW_SOURCE);
  19.     HTRequest_setOutputStream(request, HTFWriter_new(request, fp,YES));
  20.     HTLoadAbsolute(argv[1], request);
  21.     fclose(fp);
  22. } else {
  23.     printf("Can't open file name `%s'n", argv[2]);
  24. }
  25.     } else {
  26. printf("Type the URL to fetch and the name of the local file to put it inn");
  27. printf("t%s URL FILENAMEn", argv[0]);
  28.     }
  29.     HTRequest_delete(request); /* Delete the request object */
  30.     HTConversion_deleteAll(converters);
  31.     HTLibTerminate();
  32.     return 0;
  33. }