Bonjour,

Le code ci-dessous bind correctement (bidirectional) l'entier 1234567 avec mon textField.

Mon problème est qu'il l'affiche, en fonction de la machine utilisée:
soit: 1,234,567
soit: 1 234 567
et moi je voudrais qu'il affiche simplement:
1234567
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
 
package application;
 
import javafx.application.Application;
import javafx.beans.binding.Bindings;
import javafx.beans.property.SimpleIntegerProperty;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.geometry.Insets;
import javafx.geometry.Pos;
import javafx.stage.Modality;
import javafx.stage.Stage;
import javafx.util.converter.NumberStringConverter;
import javafx.scene.Scene;
import javafx.scene.control.TextField;
import javafx.scene.layout.AnchorPane;
 
 
public class Main extends Application {
	@Override
	public void start(final Stage primaryStage) {
		try {
 
			TextField myTxt = new TextField("");
 
			SimpleIntegerProperty myIntegerProperty = new SimpleIntegerProperty();
 
			myIntegerProperty.set(1234567);
			Bindings.bindBidirectional(myTxt.textProperty(), myIntegerProperty, new NumberStringConverter());
 
 
 
 
 
 
			AnchorPane root = new AnchorPane();
 
			root.getChildren().addAll( myTxt);
 
			Scene scene = new Scene(root,400,400);
			scene.getStylesheets().add(getClass().getResource("application.css").toExternalForm());
			primaryStage.setScene(scene);
			primaryStage.show();
 
 
 
		} catch(Exception e) {
			e.printStackTrace();
		}
	}
 
	public static void main(String[] args) {
		launch(args);
	}
}
Merci d'avance pour votre aide.