Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
こんにちは、Java の初心者で、Hello World を Hello%20World にエンコードしたいと考えています。しかし、URLEncoder.encode を使用すると、文字列が Hello+World としてエンコードされ、リクエストを介して IIS に渡そうとすると、脅威と見なされます。私が言及したようにエンコードする方法は?前もって感謝します。
これは実際の URL でのみ機能します
URL u = new URL("Hello World"); String path = u.getPath();