は、私は、次のJavaFXのコードを持っている「内側」とは。問題は、textField.getText() == null
またはtextField.getText() == ""
の両方がfalseを返しますが、そのフィールドには何も印刷されないため、trueを返す必要があります。は、TextField
final TextField textField = new TextField();
browse.setOnAction(new EventHandler() {
@Override
public void handle(ActionEvent actionEvent) {
FileChooser fileChooser = new FileChooser();
File chFile = fileChooser.showOpenDialog(stage);
if (chFile != null) {
// some code
if (textField.getText() != null && textField.getText() != "") {
// some code
}
}
}
});
[Javaの文字列を比較するにはどうすればよいですか](http://stackoverflow.com/questions/513832/how-do-i-compare-strings-in-java) –