上一页 1 ··· 67 68 69 70 71
摘要: 阅读全文
posted @ 2020-12-11 07:54 信铁寒胜 阅读(102) 评论(0) 推荐(0) 编辑
摘要: List<String> list = new ArrayList<String>(); list.add("苹果"); list.add("西瓜"); list.add("荔枝"); System.out.print("list="); for(String str : list){ System 阅读全文
posted @ 2020-11-30 16:28 信铁寒胜 阅读(1472) 评论(0) 推荐(0) 编辑
摘要: 1、因为RCP启动要清楚eclipse路径下的runtime文件夹,不然看不到改变代码的变化效果,这时要把Clear打勾! 阅读全文
posted @ 2020-11-26 08:52 信铁寒胜 阅读(95) 评论(0) 推荐(0) 编辑
摘要: Long id = JSONObject.getLong("123") id会是Long类型 Long id = (Long)JSONObject.getString("123") 这样会报类型转换错误,因为 这样只会得到Integer类型。 阅读全文
posted @ 2020-05-24 14:04 信铁寒胜 阅读(677) 评论(0) 推荐(0) 编辑
上一页 1 ··· 67 68 69 70 71