文件名中指定的逗号(,)使curl处理器无法发送请求

Comma(,) specified in file name makes curl processor fail to send a request

我有一个 Curl 处理器 class,用于发送请求并获取纯字符串形式的响应。

它非常有效,但是最近我遇到了一个问题。问题与发送多部分数据有关。因此,如果在多部分主体中指定了逗号(可能是其他特殊字符),它甚至不会发送任何请求。

我的意思是(下面的主要方法)

public static String buildCurlProcessBuilderExecuteAndGetResponse(String httpMethod, String URL, List<String> headers, List<String> body, boolean includeResponseHeaders) throws IOException 
{
        List<String> finalCommands = new ArrayList<String>();

        finalCommands.add("/usr/local/bin/curl");
        finalCommands.add("-s");
        finalCommands.add("-k");

        if (includeResponseHeaders) 
        {
            finalCommands.add("-i");
        }

        finalCommands.add("-X");
        finalCommands.add(httpMethod);

        finalCommands.add(URL);

        if (headers != null) 
        {
            finalCommands.addAll(headers);
        }

        if (body != null) 
        {
            finalCommands.addAll(body);
        }

        ProcessBuilder pb = new ProcessBuilder(finalCommands);
        pb.redirectErrorStream(true);       
        Process p = pb.start();
        return getResponseAsString(p.getInputStream());
}

我像这样添加多部分正文:

public static List<String> addMultipartBodyToCurlRequest(Map<String, String> mapOfheadersToAdd) 
{
        Iterator<Entry<String, String>> multipartBodyIt = mapOfheadersToAdd.entrySet().iterator();
        List<String> bodyCommand = new ArrayList<String>();

        while (multipartBodyIt.hasNext())
        {       
            Map.Entry pair = (Map.Entry) multipartBodyIt.next();

            bodyCommand.add(CURL_MULTIPART_BODY_IDENTIFIER); // "-F";
            bodyCommand.add((String) pair.getKey() + "=" + (String) pair.getValue());
        }

        return bodyCommand;
}

我把以下属性放到正文中:

generatedBody.put("entityId", entityId);
generatedBody.put("SystemFolderID", systemFolderId);
generatedBody.put("resumableTotalSize", fileSize);
generatedBody.put("resumableFilename", fileName);
generatedBody.put("resumableRelativePath", fileName);
generatedBody.put("resumableIdentifier", fileUUID);
generatedBody.put("entityName", entityName);
generatedBody.put("resumableType", resumableType);
generatedBody.put("resumableTotalChunks", totalChunksSize);

还有

generatedBody.put("resumableChunkNumber", String.valueOf(i + 1));
generatedBody.put("resumableChunkSize", String.valueOf(chunkByteArray.length));
generatedBody.put("resumableCurrentChunkSize", String.valueOf(chunkByteArray.length));
generatedBody.put("file", "@" + currentChunk.getAbsolutePath() + ";" + "filename=" + fileName);

然后调用方法:

List<String> fileBody = CURLRequestProcessor.addMultipartBodyToCurlRequest(generatedBody);

最后调用

CURLRequestProcessor.buildCurlProcessBuilderExecuteAndGetResponse("POST", finalURL, generatedHeaders, fileBody, false)

但我没有打印任何东西...似乎文件名中的一个简单逗号搞砸了一切...它用于 resumableFilenameresumableRelativePathfile 份。

名称中没有逗号,一切正常。有没有办法逃脱或做点什么?

顺便说一句,运行 在 Ubuntu。

差点忘了,请不要问我为什么我在任何其他 HTTP 客户端上使用 CURL。由于 TLS

,我必须这样做

非常感谢您!

HTTP headers 支持包含特殊字符的带引号的字符串。尝试将值放在引号中。

generatedBody.put("resumableRelativePath", "\"" + fileName + "\"");

如果您的文件名包含 " 字符,您可以在引用的字符串中使用单个反斜杠对其进行转义。

结果证明解决方案既简单又奇特。

问题与这一行有关:

generatedBody.put("file", "@" + currentChunk.getAbsolutePath() + ";" + "filename=" + fileName);

我改成了:

generatedBody.put("file", "@" + currentChunk.getAbsolutePath());

因为我在另外两个正文部分发送了文件名,称为 resumableFilenameresumableRelativePath,所以指定 filename 是多余的。在后面的逗号搞砸了,而这两部分逗号无关紧要

我想知道如果没有这些会怎样...