Fix : Ajout du caractère d'échapement de l'espace

This commit is contained in:
Alexis Delhaie
2019-10-19 22:27:16 +02:00
parent c6c505e6f2
commit 8d3c2d3214

View File

@@ -8,8 +8,8 @@ import java.util.Base64;
public class FormEncodedDialog extends JDialog { public class FormEncodedDialog extends JDialog {
public static String WINDOW_TITLE = "Formulaire de données"; public static String WINDOW_TITLE = "Formulaire de données";
public static String[] UNENCODED_CHAR = {"!", "*", "'", "(", ")", ";", ":", "@", "&", "=", "+", "$", ",", "/", "?", "#", "[", "]"}; 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[] 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 JPanel contentPane;
private JButton buttonOK; private JButton buttonOK;