代码改变世界

阅读排行榜

jsoup 的简单应用

2017-04-15 15:59 by 甘雨路, 242 阅读, 收藏,
摘要: 导入相关jar包 阅读全文

SpringMVC Controller 的简单应用

2017-02-21 15:23 by 甘雨路, 239 阅读, 收藏,
摘要: package cn.zr.pringmvctest; import javax.naming.ldap.Control; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; ... 阅读全文

iOS SQLite增删改查(简单应用)

2015-11-09 11:05 by 甘雨路, 239 阅读, 收藏,
摘要: // 注意: 在工程里导入libsqlite3.tbd库(Xcode7,如果Xcode7以下的版本则导入libsqlite3.dylib). #import <UIKit/UIKit.h> @interface AppDelegate : UIResponder <UIApplicationDele 阅读全文

Oracle 小案例

2016-12-15 08:36 by 甘雨路, 236 阅读, 收藏,
摘要: create database cstd; use cstd; /*1:建立学生表*/ create table student ( 学号 char(3) primary key, 姓名 char(8), 性别 char(4), 年龄 int, 班级 char(5) ); insert into student values('108','曾华','男',19,'9... 阅读全文

单例传值

2016-04-22 17:15 by 甘雨路, 235 阅读, 收藏,
摘要: /** * 单例传值 对象且初始化一次,页面之间相隔很多依旧可传值 */ #import @interface AppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window; @end #import "AppDelegate.h" #import "RootViewController.... 阅读全文
上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 44 下一页