关闭。这个问题需要细节或清晰。它目前不接受答案。
**想改进这个问题吗?**通过编辑这个帖子来添加细节并澄清问题。
上个月关门了。
改进这个问题
如何将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;
}
}
1条答案
按热度按时间nc1teljy1#
简单字符串属性用作