摘要: onLoadSuccess:function () { $(".easyui-numberbox").numberbox();} 阅读全文
posted @ 2019-04-28 09:56 fc-shi 阅读(715) 评论(0) 推荐(0)
摘要: 如果表字段使用的GBK编码的话,我们可以直接order by value ,因为GBK本身就是按照拼音字母排序ABCDEFGHIGK...,当第一位相同的时候会比较第二位,以此类推。 如果表字段使用的UTF-8编码的话,通常我们都会的编码,这样我们可以使用MySQL的convert方法开转换gbk进 阅读全文
posted @ 2019-04-03 16:18 fc-shi 阅读(1497) 评论(0) 推荐(0)
摘要: function chat1() { $('#container1').highcharts({ credits: { enabled: false }, title: { text: '大标题' }, subtitle: { text: '小标题' }, xAxis: { categories: 阅读全文
posted @ 2019-04-03 09:08 fc-shi 阅读(2684) 评论(0) 推荐(0)
摘要: Calendar c = Calendar.getInstance();c.setTime(new Date());c.set(Calendar.DAY_OF_MONTH, c.getActualMaximum(Calendar.DAY_OF_MONTH));SimpleDateFormat for 阅读全文
posted @ 2019-03-20 16:49 fc-shi 阅读(4731) 评论(0) 推荐(1)
摘要: String filename = "F:\\test123.txt";FileOutputStream stream = null;OutputStreamWriter writer = null;try { stream = new FileOutputStream(filename, true 阅读全文
posted @ 2019-03-20 16:45 fc-shi 阅读(349) 评论(0) 推荐(0)
摘要: 在执行速度上,String < StringBuffer < Stringbuilder String类是不可变的,每次对 String 类型进行改变的时候其实都等同于生成了一个新的 String 对象,然后将指针指向新的 String 对象。 StringBuffer 线程安全 Stringbui 阅读全文
posted @ 2019-02-22 15:56 fc-shi 阅读(161) 评论(0) 推荐(0)