Skip to content

Instantly share code, notes, and snippets.

@bitsmuggler
Created March 3, 2016 08:16
Show Gist options
  • Save bitsmuggler/125631e882df1a4fc7b7 to your computer and use it in GitHub Desktop.
Save bitsmuggler/125631e882df1a4fc7b7 to your computer and use it in GitHub Desktop.
Code-Snippet für Aufgabe: Text eines JTextEdit in ein double konvertieren
//Breite 'Text' vom Textfeld holen
String textWidth = this.textFieldWidth.getText();
//Breite 'Text' (String) in ein Double konvertieren.
double width = Double.parseDouble(textWidth);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment