我有一个使用 encodeURIComponent 在 JS 中编码的文本。原文是
weoowuyteeeee !_.
Test could you please resubmit again?
在发送之前,我在我的 JS 代码中执行以下操作。
var text = encodeURIComponent($("#txt11").val());
我不应该这样做吗?
一旦我使用 encodeURIComponent 对其进行编码,它就变成了
weoowuyteeeee%2520!_.%252C%250A%250ATest%252C%2520%2520could%2520you%2520please%2520resubmit%2520again%253F
我正在尝试使用在 Java 端解密相同的内容
String decodedString1 = URLDecoder.decode(myObject.getText(), "UTF-8");
但我将此视为输出,而不是原始文本。我究竟做错了什么?
weoowuyteeeee%20!_.%2C%0A%0ATest%2C%20%20可以%20you%20please%20resubmit%20again%3F