From 8d3c2d321413d6f8dc32c62044539cb69b2eecb5 Mon Sep 17 00:00:00 2001 From: Alexis Delhaie Date: Sat, 19 Oct 2019 22:27:16 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20:=20Ajout=20du=20caract=C3=A8re=20d'?= =?UTF-8?q?=C3=A9chapement=20de=20l'espace?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ovh/alexisdelhaie/curling/windows/FormEncodedDialog.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ovh/alexisdelhaie/curling/windows/FormEncodedDialog.java b/src/ovh/alexisdelhaie/curling/windows/FormEncodedDialog.java index e993686..630d354 100644 --- a/src/ovh/alexisdelhaie/curling/windows/FormEncodedDialog.java +++ b/src/ovh/alexisdelhaie/curling/windows/FormEncodedDialog.java @@ -8,8 +8,8 @@ import java.util.Base64; public class FormEncodedDialog extends JDialog { public static String WINDOW_TITLE = "Formulaire de données"; - public static String[] UNENCODED_CHAR = {"!", "*", "'", "(", ")", ";", ":", "@", "&", "=", "+", "$", ",", "/", "?", "#", "[", "]"}; - public static String[] ENCODED_CHAR = {"%21", "%2A", "%27", "%28", "%29", "%3B", "%3A", "%40", "%26", "%3D", "%2B", "%24", "%2C", "%2F", "%3F", "%23", "%5B", "%5D"}; + public static String[] UNENCODED_CHAR = {"!", "*", "'", "(", ")", ";", ":", "@", "&", "=", "+", "$", ",", "/", "?", "#", "[", "]", " "}; + public static String[] ENCODED_CHAR = {"%21", "%2A", "%27", "%28", "%29", "%3B", "%3A", "%40", "%26", "%3D", "%2B", "%24", "%2C", "%2F", "%3F", "%23", "%5B", "%5D", "%20"}; private JPanel contentPane; private JButton buttonOK;