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;