我在向我的服务器发送文件时遇到问题。我已经检查了其他一些试图解决大部分问题的问题,但最后我无法上传文件 这是我的C ++代码:
#define _CRT_SECURE_NO_WARNINGS
#include <windows.h>
#include <wininet.h>
#include <iostream>
#include <tchar.h>
#pragma warning(disable : 4996)
#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
static char *filename = "perf.txt"; //Filename to be loaded
static char *filepath = "C:\\perf.txt"; //Filename to be loaded
static char *type = "text/plain";
static char boundary[] = "BOUNDARY"; //Header boundary
static char nameForm[] = "file"; //Input form name
static char iaddr[] = "2e8cd930.ngrok.io"; //IP address
static char url[] = "/post/upload.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 + 1));
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");
content[lSize] = '\0';
// 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\r\n\r\n%s", buffer, content);
sprintf(buffer, "%s\r\n-%s-\r\n", buffer, boundary);
printf("%s", buffer);
//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");
InternetCloseHandle(hSession);
InternetCloseHandle(hConnect);
InternetCloseHandle(hRequest);
getchar();
return 0;
}
这是我的PHP代码[upload.php],我已经更改了上传文件夹其他人创建和删除文件的权限:
<?php
$uploaddir = 'upload/';
if (is_uploaded_file(isset($_FILES['file']['tmp_name'])?($_FILES['file'['tmp_name']]):0))
{
$uploadfile = $uploaddir . basename($_FILES['file']['name']);
echo "File ". $_FILES['file']['name'] ." uploaded successfully. ";
if (move_uploaded_file($_FILES['file']['tmp_name'], $uploadfile))
{
echo "File was moved! ";
}
else
{
print_r($_FILES);
}
}
else
{
print_r($_FILES);
}
?>
使用Wireshark我的帖子请求和响应是[我已经尝试在Content-Type行之后用1行替换两行新行但没有帮助 更改分隔符后:
POST /post/upload.php HTTP/1.1
Content-Type: multipart/form-data; boundary=BOUNDARY
User-Agent: WINDOWS
Host: 2e8cd930.ngrok.io
Content-Length: 130
Cache-Control: no-cache
-BOUNDARY
Content-Disposition: form-data; name="file"; filename="perf.txt"
Content-Type: text/plain
Whats Up?
-BOUNDARY-
HTTP/1.1 200 OK
Date: Sat, 25 Nov 2017 11:25:16 GMT
Server: Apache/2.4.27 (Debian)
Content-Length: 10
Content-Type: text/html; charset=UTF-8
Array
(
)
我不知道为什么我的服务器回复会带有Array()。该文件未上传。
答案 0 :(得分:0)
我能看到的第一个问题:
您在标题中说分隔符为—BOUNDARY
,然后使用与实际分隔符相同的字符串。这是错的。格式为
—DELIMITER
content
—DELIMITER
content
—DELIMITER—
所以你的标题应该只用BOUNDARY
作为分隔符。
Content-Type: multipart/form-data; boundary=BOUNDARY
您还需要将尾随—
添加到结束分隔符。
将标题与正文分开时,您还有\r\n\n
。它应该是\r\n\r\n
。
这些错误将导致MIME解析器无法在任何地方找到任何表单数据。
在性能方面,您不应该使用sprintf
来附加数据,方法是先将缓冲区放在第一位,然后再添加要追加的内容。它会导致复制已经存在的数据过多。您应该使用strncat
,因为所有内容都是要追加的字符串。或者监视字符串长度并使用sprintf
到末尾追加。有关详细信息,请参阅this question。