Uri.EscapeDataString() - Invalid URI: The Uri string is too long

前端 未结 6 1675
难免孤独
难免孤独 2020-12-07 00:14

I\'m using compact framework/C# on windows mobile.

In my application I am uploading data to the server by serializing objects and using a HttpWebRequest/POST request

6条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-07 00:55

    The answer of "Alberto de Paola" is good.

    Nonetheless, to unescape the escaped data is little bit trickier, because you have to avoid cutting the encoded string at the middle of an encoded char (or you will break the integrity of the original string).

    Here's my way of fixing this issue :

    public static string EncodeString(string str)
    {
        //maxLengthAllowed .NET < 4.5 = 32765;
        //maxLengthAllowed .NET >= 4.5 = 65519;
        int maxLengthAllowed = 65519;
        StringBuilder sb = new StringBuilder();
        int loops = str.Length / maxLengthAllowed;
    
        for (int i = 0; i <= loops; i++)
        {
            sb.Append(Uri.EscapeDataString(i < loops
                ? str.Substring(maxLengthAllowed * i, maxLengthAllowed)
                : str.Substring(maxLengthAllowed * i)));
        }
    
        return sb.ToString();
    }
    
    public static string DecodeString(string encodedString)
    {
        //maxLengthAllowed .NET < 4.5 = 32765;
        //maxLengthAllowed .NET >= 4.5 = 65519;
        int maxLengthAllowed = 65519;
    
        int charsProcessed = 0;
        StringBuilder sb = new StringBuilder();
    
        while (encodedString.Length > charsProcessed)
        {
            var stringToUnescape = encodedString.Substring(charsProcessed).Length > maxLengthAllowed
                ? encodedString.Substring(charsProcessed, maxLengthAllowed)
                : encodedString.Substring(charsProcessed);
    
            // If the loop cut an encoded tag (%xx), we cut before the encoded char to not loose the entire char for decoding
            var incorrectStrPos = stringToUnescape.Length == maxLengthAllowed ? stringToUnescape.IndexOf("%", stringToUnescape.Length - 4, StringComparison.InvariantCulture) : -1;
            if (incorrectStrPos > -1)
            {
                stringToUnescape = encodedString.Substring(charsProcessed).Length > incorrectStrPos
                    ? encodedString.Substring(charsProcessed, incorrectStrPos)
                    : encodedString.Substring(charsProcessed);
            }
    
            sb.Append(Uri.UnescapeDataString(stringToUnescape));
            charsProcessed += stringToUnescape.Length;
        }
    
        var decodedString = sb.ToString();
    
        // ensure the string is sanitized here or throw exception if XSS / SQL Injection is found
        SQLHelper.SecureString(decodedString);
        return decodedString;
    }
    

    To test these functions :

    var testString = "long string to encode";
    var encodedString = EncodeString(testString);
    var decodedString = DecodeString(encodedString);
    
    Console.WriteLine(decodedString == testString ? "integrity respected" : "integrity broken");
    

    Hope this can help avoiding some headaches ;)

提交回复
热议问题