javafx将stringproperty[值:”“]迁移到简单字符串

nkhmeac6  于 2021-07-06  发布在  Java
关注(0)|答案(1)|浏览(311)

关闭。这个问题需要细节或清晰。它目前不接受答案。
**想改进这个问题吗?**通过编辑这个帖子来添加细节并澄清问题。

上个月关门了。
改进这个问题
如何将stringproperty转换为string?我只需要文本值。但是我的函数是show to me“stringproperty[value:bbbbbb]”,我知道javafx特定的访问器语法和访问器。但我不明白该怎么说。

public class TestDelete {

private static StringProperty myTestValue = new SimpleStringProperty();

public static void main(String[] args) {
    setText();
}

private static void setText() {
    TestDelete testDelete = new TestDelete();
    String myText = "aaaaa bbbbbb";
    myTestValue = new SimpleStringProperty(myText.replaceAll(".* ", ""));
    System.out.println(myTestValue);
}

public void getmyTestValue() {
    myTestValue.get();
}

public void setmyTestValue(String newVal) {
    myTestValue.set(newVal);
}

public StringProperty myTestValueProperty() {
    return myTestValue;
}

}

nc1teljy

nc1teljy1#

简单字符串属性用作

public class NewBean {
SimpleStringProperty id = new SimpleStringProperty();
SimpleStringProperty name = new SimpleStringProperty();

public NewBean(){

}

public String getId() {
    return id.get();
}

public SimpleStringProperty idProperty() {
    return id;
}

public void setId(String id) {
    this.id.set(id);
}

public String getName() {
    return name.get();
}

public SimpleStringProperty nameProperty() {
    return name;
}

public void setName(String name) {
    this.name.set(name);
}
}

相关问题