上一页 1 2 3 4 5 6 7 8 ··· 16 下一页
摘要: http://www.blogjava.net/yongboy/archive/2013/05/13/399203.html 100万并发设置http://blog.csdn.net/longhumen1214/article/category/1438633 端口65535原理接收连接数和发... 阅读全文
posted @ 2014-07-24 21:51 jy02432443 阅读(239) 评论(0) 推荐(0) 编辑
摘要: 在项目路径下新建一个proguard-project.txt文件 ,最后记得要用eclipse工具导出正式包才会用到混淆,调试模式没用-optimizationpasses 5-verbose-optimizations !code/simplification/arithmetic,!field/... 阅读全文
posted @ 2014-07-18 17:02 jy02432443 阅读(211) 评论(0) 推荐(0) 编辑
摘要: 1:int类型的范围值(可以用指数表示min--max)答案:此题考对int占用的字节和计算机基础---2³¹-1到-2³¹2.java用来表示unicode的转义符是什么,并简要描述unicode和utf-8的关系---网络字符处理的基础,必须掌握答案:\u Unicode有多种存储方式,U... 阅读全文
posted @ 2014-04-17 15:18 jy02432443 阅读(255) 评论(0) 推荐(0) 编辑
摘要: 请使用1.java -jar -Dfile.encoding=utf-8 dapao.jar2.请使用URLDecode,URLEncode3.请使用unicode编码格式bat运行当前目录下的jar文件cd %~dp0 java -jar -Dfile.encoding=utf-8 ttdp.ja... 阅读全文
posted @ 2014-04-09 18:37 jy02432443 阅读(967) 评论(0) 推荐(0) 编辑
摘要: public static Long getDaysBetween(long startDate, long endDate) { Calendar fromCalendar = Calendar.getInstance(); fromCalendar.setTimeInMillis(startDate); fromCalendar.set(Calendar.HOUR_OF_DAY, 0); fromCalendar.set(Calendar.MINUTE, 0); fromCalendar.se... 阅读全文
posted @ 2014-03-31 13:50 jy02432443 阅读(1096) 评论(0) 推荐(0) 编辑
摘要: 查看event是否开启: show variables like '%sche%'; 将事件计划开启: set global event_scheduler=1; 关闭事件任务: alter event e_test ON COMPLETION PRESERVE DISABLE; 开户事件任务: alter event e_test ON COMPLETION PRESERVE ENABLE; 简单实例. 创建表 CREATE TABLE test(endtime DATETIME); 创建存储过程test CREATE PROCEDURE test () BEGIN ... 阅读全文
posted @ 2014-03-28 11:45 jy02432443 阅读(361) 评论(0) 推荐(0) 编辑
摘要: 排序select * from content order by 字段一 asc ,字段二 asc,字段三 desc想多少字段都行,样式如上!其中:asc或desc(即升级或降序)自动递增重置为1alter table **** AUTO_INCREMENT=1 插入一条记录,并使某个字段的值为自动递增值INSERT into userjjc(rank) VALUES (0);UPDATE userjjc SET rank = LAST_INSERT_ID() WHERE uid=LAST_INSERT_ID();多表关联查询select userjjc.* from userinfo,us. 阅读全文
posted @ 2014-03-24 11:16 jy02432443 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 需要的工具1.Eclipse2.JDK3.exe4j4.Eclipse附加插件windowsBuilder :百度直接搜去eclipse官网下exe4j配置:http://xiejianglei163.blog.163.com/blog/static/124727620138931213864/对话... 阅读全文
posted @ 2014-03-15 17:53 jy02432443 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 服务端框架:1、servlet2、netty协议:1、http 1.02、http 1.1数据库:mysql对象关系映射(ORM)框架:mybatis缓存:rediseclipse能运行,导入jar包不能运行 没任何提示 请注意jar包不能放在有中文目录的路径下,全为英文即可 阅读全文
posted @ 2014-02-21 17:12 jy02432443 阅读(261) 评论(0) 推荐(0) 编辑
摘要: 对于想学习Java的朋友请参考IBM旗下站点:http://www.ibm.com/developerworks/cn/java/newto/index.html我看了下对于新手有很好的指导,并且全面。想继续深入学习的话可以参考:http://www.ibm.com/developerworks/cn/java/newto/tutorials.html 阅读全文
posted @ 2014-02-21 16:12 jy02432443 阅读(187) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 16 下一页