我有一个类文件Nepokretnost.java,其中构造函数如下所示:
public Nepokretnost(String tipNepokretnosti, String zona, String pravo,
double povrsina, int amortizacija, double osnovica, double kredit, double porez) {
this.tipNepokretnosti = tipNepokretnosti;
this.zona = zona;
this.pravo = pravo;
this.povrsina = povrsina;
this.amortizacija = amortizacija;
this.osnovica = osnovica;
this.kredit = kredit;
this.porez = porez;
}
此外,我为每个类字段都有TableView列。我的问题是双场“povrsina”。我想从TextField设置它。
我将名为txtPovrsina的TextField的内容发送到双变量:
double dPovrsina;
dPovrsina = Double.parseDouble(txtPovrsina.getText());
然后将所有字段放在TableView中:
ObservableList<Nepokretnost> data = tblTabela.getItems();
data.add(new Nepokretnost(cboNepokretnost.getValue().toString(),cboZona.getValue().toString(),
txtPravo,dPovrsina,40,450000.25,2500.00,2500.00));
一切运作良好,但我想要一些app的行为我无法弄清楚如何设置。现在,当我在TextField中放入像25这样的int时,我在TableView列中得到25.0。我希望所有列单元格都精确到2位小数。
我试过了:
DecimalFormat df=new DecimalFormat("#.00");
ObservableList<Nepokretnost> data = tblTabela.getItems();
data.add(new Nepokretnost(cboNepokretnost.getValue().toString(),cboZona.getValue().toString(),
txtPravo,df.format(dPovrsina),40,450000.25,2500.00,2500.00));
但是我收到错误“不兼容的类型:String无法转换为double”
我仍然是java中的菜鸟,但我的猜测是格式化正在制作字符串,我想输入保持双倍只是有2位小数。像本专栏一样,我对其他双重字段也有同样的问题。
有人可以给我指点吗?
答案 0 :(得分:3)
您想要更改数据在表格中的显示方式,而不是更改数据本身。为此,您需要在表列上设置单元格工厂。像
这样的东西TableView<Nepokretnost> table = new TableView<>();
TableColumn<Nepokretnost, Number> povrsinaCol = new TableColumn<>("Povrsina");
povrsinaCol.setCellValueFactory(cellData ->
new ReadOnlyDoubleWrapper(cellData.getValue().getPovrsina()));
povrsinaCol.setCellFactory(tc -> new TableCell<Nepokretnost, Number>() {
@Override
protected void updateItem(Number value, boolean empty) {
super.updateItem(value, empty) ;
if (empty) {
setText(null);
} else {
setText(String.format("%0.2f", value.doubleValue()));
}
}
});
答案 1 :(得分:0)
如果您在只读包装器上发现值转换错误,则将该值用作对象。
TableView<Nepokretnost> table = new TableView<>();
TableColumn<Nepokretnost, Number> povrsinaCol = new TableColumn<>("Povrsina");
povrsinaCol.setCellValueFactory(cellData ->
new ReadOnlyDoubleWrapper(cellData.getValue().getPovrsina().asObject()));
povrsinaCol.setCellFactory(tc -> new TableCell<Nepokretnost, Number>() {
@Override
protected void updateItem(Number value, boolean empty) {
super.updateItem(value, empty) ;
if (empty) {
setText(null);
} else {
setText(String.format("%0.2f", value.doubleValue()));
}
}
});