上一页 1 ··· 69 70 71 72 73 74 75 76 77 ··· 79 下一页
摘要: 嵌入式软件开发中经常用到sqlite数据库,而为了更方便、直观的对数据库进行分析、处理,往往需要一个GUI软件进行管理。SQLiteExpert则是一款非常好用的软件。 一、下载与安装 下载对应的位数的SQLite Expert:http://www.sqliteexpert.com/downloa 阅读全文
posted @ 2021-04-24 09:02 信铁寒胜 阅读(1203) 评论(0) 推荐(0)
摘要: File targetFile = new File("C:\\temp\\"+"测试"+".pdf"); targetFile.createNewFile(); 阅读全文
posted @ 2021-04-21 16:12 信铁寒胜 阅读(122) 评论(0) 推荐(0)
摘要: 1、关于报这个错的问题,就是服务器端出现问题,服务器端出现问题 具体是:我自己写了dll文件,出现错误,所以服务器端在启动的时候就没有成功!,因为我掉用了删除Item,后面又继续查询Item,就会出现这个问题、 2、修复:就是把有问题的dll文件去掉 阅读全文
posted @ 2021-04-20 10:48 信铁寒胜 阅读(263) 评论(0) 推荐(0)
摘要: 1、printf()函数输出的时候,如果是数字则%d,字符串则%s 阅读全文
posted @ 2021-04-18 20:42 信铁寒胜 阅读(66) 评论(0) 推荐(0)
摘要: 出现问题的原因:虚拟机被强制关机,eclipse没有正常关闭 1、上网查询了各种方案,都没有办法解决问题。(这个问题主要是工作空间的问题) 解决问题的方法: 1、把之前的工作区域名称改掉,把工作区域的项目,移到一个新的文件夹里,再把这个文件夹作为工作区域即可。 2、还有一种解决方案,但我没试,就是把 阅读全文
posted @ 2021-04-07 06:36 信铁寒胜 阅读(1533) 评论(0) 推荐(0)
摘要: 1、aTextControlTheInput是A文本框的KeyListener时间,aTextField是A文本框,bTextField是B文本框 public class aTextControlTheInput extends KeyAdapter { public void keyTyped( 阅读全文
posted @ 2021-04-03 14:54 信铁寒胜 阅读(105) 评论(0) 推荐(0)
摘要: 1、查看首选项“ICS_classifiable_types”,把你要发送的Item版本加进去。不能发送Item 阅读全文
posted @ 2021-03-30 18:58 信铁寒胜 阅读(25) 评论(0) 推荐(0)
摘要: package test2; public class Test { public static void main(String[] args) { Test t = new Test(); t.show(new Car(){ //这是内部类的使用 public void run(){ Syste 阅读全文
posted @ 2021-03-30 11:22 信铁寒胜 阅读(113) 评论(0) 推荐(0)
摘要: 1、遍历删除是没有难,而重点在JTableModel每次删除都是删除0行,因为你删除后,JTableModel就会更新数据了 int tableRowCount = tableModel.getRowCount(); if(tableRowCount > 0){ int realDeleteRow 阅读全文
posted @ 2021-03-26 14:55 信铁寒胜 阅读(228) 评论(0) 推荐(0)
摘要: 1、重写一个单元格渲染类 public class CheckBoxRenderer extends JCheckBox implements TableCellRenderer { private static final long serialVersionUID = 1L; Border bo 阅读全文
posted @ 2021-03-26 09:35 信铁寒胜 阅读(452) 评论(0) 推荐(0)
上一页 1 ··· 69 70 71 72 73 74 75 76 77 ··· 79 下一页