java 使用restclient或postman发送gzip数据

gdrx4gfi  于 2023-11-15  发布在  Java
关注(0)|答案(1)|浏览(109)

我如何使用restclient或postman发送gzip数据作为body的一部分?。我使用apache restclient 3.2.2也无法得到响应。我有附上图片供参考。
基本上我有一个xml文件,想先将其转换为gzip,然后作为正文的一部分发送。
为了转换为GZip,我使用在线工具首先将我的xml文件转换为gzip,并将转换后的gzip文件作为主体的一部分包含在我的restclient中。
我得到了下面的Java代码和代码,我得到正确的响应。但不能让它在restclient工具工作!!x1c 0d1x restclient body

URL url = new URL(String.format("%s?tid=%d",
                sessionInfo._getMessagesUrl, tpegId));
        connection = (HttpURLConnection) url.openConnection();
        connection.setRequestMethod("POST");
        connection.setRequestProperty("Content-Type",
                "application/octet-stream");
        connection.setUseCaches(false);
        connection.setDoInput(true);
        connection.setDoOutput(true);

        // Convert XML to initial binary payload.
        byte[] bytesToSend = getMessagesRequestXml.getBytes("UTF-8");
        String fileName = "C:\\\\Sanjay\\\\Work\\\\17MM\\\\MM17_body.txt";
        if (this._outputFilename != null) {
            System.out.println(String.format("\nWriting body file '%s'", fileName));
            FileOutputStream s = new FileOutputStream(fileName);
            s.write(bytesToSend);
            s.close();
        }
        dumpBinary("Original GetMessages request", bytesToSend);

        // Optionaly compress
        if (this._shouldCompress) {
            byte[] gzippedBytes = compressToGzip(bytesToSend);
            bytesToSend = gzippedBytes;
            dumpBinary("Compressed GetMessages request", bytesToSend);
        }

        // Optionally encrypt
        if (sessionInfo._encryptionKey != null) {
            byte[] encryptedBytes = encrypt(bytesToSend, sessionInfo._encryptionKey);
            bytesToSend = encryptedBytes;
            dumpBinary("Encrypted GetMessages request", bytesToSend);
        }

        // Send request
        System.out.println(String.format("Sending GetMessages Request: %s\n", url.toString()));         
        DataOutputStream os = new DataOutputStream(
                connection.getOutputStream());
        os.write(bytesToSend, 0, bytesToSend.length);
        os.flush();
        os.close();

字符串

aiazj4mn

aiazj4mn1#

我发现你需要在restclient中传递gzip作为文件体,这解决了我的问题。

相关问题