如何解决这个错误:未定义的引用'__imp_InternetOpenA' [英] How to fix this error: undefined reference to `__imp_InternetOpenA'

查看:936
本文介绍了如何解决这个错误:未定义的引用'__imp_InternetOpenA'的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想让C ++程序将包含信息的.txt文件发送到我的电脑。我在互联网上搜索得太多,但无法找到有效的方法。
当我使用Dev C ++给我这个错误时:
...:未定义的引用 __ imp_InternetOpenA'
...:未定义的引用
__ imp_InternetConnectA'
...:未定义引用 __ imp_FtpPutFileA'
...:未定义引用
__ imp_HttpOpenRequestA'
这里有三个示例我发现,但所有返回这个错误。

I want make C++ program where send .txt file with information to my PC. I surch so much in internet but cant find method that works. When I uusing Dev C++ give me this errors: ...: undefined reference to __imp_InternetOpenA' ...: undefined reference to__imp_InternetConnectA' ...: undefined reference to __imp_FtpPutFileA' ...: undefined reference to__imp_HttpOpenRequestA' Here are three examples where I find, but all return this error.

  <pre>

   #include <windows.h>
   #include <wininet.h>
   #include <iostream>
   #include <stdio.h>
   #include <tchar.h>

  #pragma comment(lib,"wininet.lib")
  #define ERROR_OPEN_FILE       10
  #define ERROR_MEMORY          11
  #define ERROR_SIZE            12
  #define ERROR_INTERNET_OPEN   13
  #define ERROR_INTERNET_CONN   14
  #define ERROR_INTERNET_REQ    15
  #define ERROR_INTERNET_SEND   16

  using namespace std;

  int main()
  {
     // Local variables
     char filename[]   = "file";   //Filename to be loaded
     char filepath[]   = "d:\\a.jpg";   //Filename to be loaded
     char type[]       = "image/jpeg";
     char boundary[]  = "--BOUNDARY---";            //Header boundary
     char nameForm[]  = "formname";     //Input form name
     char iaddr[]     = "localhost";        //IP address
     char url[]       = "/http/file.php";         //URL

     char hdrs[512]={'-'};                  //Headers
     char * buffer;                   //Buffer containing file + headers
     char * content;                  //Buffer containing file
     FILE * pFile;                    //File pointer
     long lSize;                      //File size
     size_t result;                   


     // Open file
     pFile = fopen ( filepath , "rb" );
     if (pFile==NULL) 
     {
         printf("ERROR_OPEN_FILE");
         getchar();
         return ERROR_OPEN_FILE;
     }
     printf("OPEN_FILE\n");

     // obtain file size:
     fseek (pFile , 0 , SEEK_END);
     lSize = ftell (pFile);
     rewind (pFile);

     // allocate memory to contain the whole file:
     content = (char*) malloc (sizeof(char)*lSize);
     if (content == NULL) 
     {
         printf("ERROR_MEMORY");
         getchar();
         return ERROR_OPEN_FILE;
     }
     printf("MEMORY_ALLOCATED\t \"%d\" \n",&lSize);
     // copy the file into the buffer:
     result = fread (content,1,lSize,pFile);
     if (result != lSize) 
     {
         printf("ERROR_SIZE");
         getchar();
         return ERROR_OPEN_FILE;
     }
     printf("SIZE_OK\n");

     // terminate
     fclose (pFile);
     printf("FILE_CLOSE\n");
     //allocate memory to contain the whole file + HEADER
     buffer = (char*) malloc (sizeof(char)*lSize + 2048);

     //print header
     sprintf(hdrs,"Content-Type: multipart/form-data; boundary=%s",boundary);
     sprintf(buffer,"%s\r\nContent-Disposition: form-data; name=\"%s\"; filename=\"%       


----------


s\"\r\n",boundary,nameForm,filename);
     sprintf(buffer,"%sContent-Type: %s\r\n",buffer,type);
     sprintf(buffer,"%s%s",buffer,content);
     sprintf(buffer,"%s--%s--\r\n",buffer,boundary);



     //Open internet connection
     HINTERNET hSession = InternetOpen("WINDOWS",INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
     if(hSession==NULL) 
     {
         printf("ERROR_INTERNET_OPEN");
         getchar();
         return ERROR_OPEN_FILE;
     }
     printf("INTERNET_OPENED\n");

     HINTERNET hConnect = InternetConnect(hSession, iaddr,INTERNET_DEFAULT_HTTP_PORT, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 1);
     if(hConnect==NULL) 
     {
         printf("ERROR_INTERNET_CONN");
         getchar();
         return ERROR_INTERNET_CONN;
     }
     printf("INTERNET_CONNECTED\n");

     HINTERNET hRequest = HttpOpenRequest(hConnect, (const char*)"POST",_T(url),NULL, NULL, NULL,INTERNET_FLAG_RELOAD, 1);
     if(hRequest==NULL) 
      {
         printf("ERROR_INTERNET_REQ");
         getchar();

     }
     printf("INTERNET_REQ_OPEN\n");

     BOOL sent= HttpSendRequest(hRequest, hdrs, strlen(hdrs), buffer, strlen(buffer));

     if(!sent) 
     {
         printf("ERROR_INTERNET_SEND");
         getchar();
         return ERROR_INTERNET_CONN;
     }
     printf("INTERNET_SEND_OK\n");

     //close any valid internet-handles
     InternetCloseHandle(hSession);
     InternetCloseHandle(hConnect);
     InternetCloseHandle(hRequest);



     getchar();
     return 0;
  }

<pre>
  #include <winsock2.h>
  #include <wininet.h>
  #include <tchar.h>
  #include <iostream>
  #include <stdlib.h>
  #include <windows.h>

//#pragma comment(lib,"wininet.lib")

using namespace std;

int main()
{

    static TCHAR frmdata[] = "-----------------------------7d82751e2bc0858\nContent-Disposition: form-data; name=\"uploadedfile\"; filename=\"C:\test.txt\"\nContent-Type: text/plain\n\nfile contents  here\n-----------------------------7d82751e2bc0858--"; 
    static TCHAR hdrs[] = "Content-Type: multipart/form-data; boundary=---------------------------7d82751e2bc0858"; 

    HINTERNET hSession = InternetOpen("MyAgent",INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
     if(hSession==NULL)
    {
     cout<<"Error: InternetOpen";  
    }


    HINTERNET hConnect = InternetConnect(hSession, _T("localhost"),INTERNET_DEFAULT_HTTP_PORT, NULL, NULL, INTERNET_SERVICE_HTTP, 0, 1);
     if(hConnect==NULL)
    {
     cout<<"Error: InternetConnect";  
    }

    HINTERNET hRequest = HttpOpenRequest(hConnect, (const char*)"POST",_T("upload.php"), NULL, NULL, (const char**)"*/*\0", 0, 1);
    if(hRequest==NULL)
    {
     cout<<"Error: HttpOpenRequest";  
    }

    BOOL sent= HttpSendRequest(hRequest, hdrs, strlen(hdrs), frmdata, strlen(frmdata));
    if(!sent)
    {
     cout<<"Error: HttpSendRequest";
     }

    //close any valid internet-handles
    InternetCloseHandle(hSession);
    InternetCloseHandle(hConnect);
    InternetCloseHandle(hRequest);

    return 0;
}


推荐答案

。这是与WinINet库链接的问题。如果您正在使用MinGW,将-lwininet(不带引号)添加到附加的命令参数中,并且应该修复它。如果你使用VC ++,我不知道该怎么做。另外,请确保WinINet库的位置在链接器的搜索路径中。

I had many errors like this on my first C++ program. It is a problem with linking against the WinINet library. If you are using MinGW add "-lwininet" (without quotes) to the additional commandling arguments and it should be fixed. I don't know what to to do if you use VC++. Also, make sure the location of the WinINet library is in the linker's search paths.

这篇关于如何解决这个错误:未定义的引用'__imp_InternetOpenA'的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆