Fix : Ajout du caractère d'échapement de l'espace
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user