博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JAVAFX TAbleView 日期格式化
阅读量:6497 次
发布时间:2019-06-24

本文共 1974 字,大约阅读时间需要 6 分钟。

hot3.png

private void updateTableView(){    Thread threadConnectingToDB = new Thread(() -> {        try {            List 
patients; PatientDAO patientDAO = FactoryDAO.getInstance().getPatientDAO(); if(patientDAO.getAllPatients() instanceof List){ patients = (List) patientDAO.getAllPatients(); } else { patients = new ArrayList(patientDAO.getAllPatients()); } columnID.setCellValueFactory(new PropertyValueFactory
("id")); columnDate.setCellValueFactory(new PropertyValueFactory
("doc_date")); columnDate.setCellFactory(column -> { TableCell
cell = new TableCell
() { private SimpleDateFormat format = new SimpleDateFormat("dd.MM.yyyy"); @Override protected void updateItem(Date item, boolean empty) { super.updateItem(item, empty); if(empty) { setText(null); } else { if(item != null) this.setText(format.format(item)); } } }; return cell; }); columnSecondname.setCellValueFactory(new PropertyValueFactory
("secondname")); columnFirstname.setCellValueFactory(new PropertyValueFactory
("firstname")); columnThirdname.setCellValueFactory(new PropertyValueFactory
("thirdname")); tableView.setItems(FXCollections.observableList(patients)); } catch (SQLException e) { try { ErrorStage.display("Произошла ошибка при подключении к базе данных"); } catch (Exception e1) { e1.printStackTrace(); } e.printStackTrace(); } }); threadConnectingToDB.start(); threadConnectingToDB.interrupt();}

转载于:https://my.oschina.net/sunhacker/blog/1648894

你可能感兴趣的文章
1.12 xshell密钥认证
查看>>
3.2 用户组管理
查看>>
awk
查看>>
AliOS Things SMP系统及其在esp32上实现示例
查看>>
VMware虚拟机出现“需要整合虚拟机磁盘”的解决方法
查看>>
ibatis 动态查询
查看>>
汇编语言之实验一
查看>>
09、Modules - Directory根据目录加载模块文件
查看>>
观影识人生
查看>>
The Little Prince-12/12
查看>>
git 调用 Beyond Compare
查看>>
ECMAScript 5 —— Function 类型 (一)
查看>>
SQL基础-->层次化查询(START BY ... CONNECT BY PRIOR)[转]
查看>>
android实现图片识别的几种方法
查看>>
bzoj1030[JSOI2007]文本生成器
查看>>
mvc学习地址
查看>>
masonry 基本用法
查看>>
使用openssl创建自签名证书及部署到IIS教程
查看>>
Word产品需求文档,已经过时了【转】
查看>>
dtoj#4299. 图(graph)
查看>>