E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
Android学习之路代码笔记
第一行
代码笔记
从过完年回来上班,看别人在看第一行代码,到现在也有一个月了,终于把他看完了,这是在住的地方记的笔记,在上班的地方的笔记还没写上去。然后将这个值传入setContentView()方法即可。注意这里我们使用的R,是com.example.activitytest包下的R文件,然后我们使用了android:label指定活动中标题栏的内容,标题栏是显示在活动最顶部的,待会儿运行的时候你就会看到重写on
寄意兰州
·
2016-04-09 16:14
Android
【
代码笔记
】浇花动画
一,效果图。二,工程图。三,代码。RootViewController.h#import @interfaceRootViewController:UIViewController{NSTimer*timer;inti;}@end RootViewController.m-(void)viewDidLoad{[superviewDidLoad];//Doanyadditionalsetupaft
fanqingtulv
·
2016-04-08 09:00
【
代码笔记
】将log日志保存到文件
代码:#import"AppDelegate.h" #import"RootViewController.h" @implementationAppDelegate-(BOOL)application:(UIApplication*)applicationdidFinishLaunchingWithOptions:(NSDictionary*)launchOptions{self.window=
fanqingtulv
·
2016-04-07 09:00
【
代码笔记
】将图片处理成圆的
一,效果图。二,工程图。三,代码。ViewController.m-(void)viewDidLoad{[superviewDidLoad];//Doanyadditionalsetupafterloadingtheview,typicallyfromanib.//初始化界面 [selfaddView];}#pragma-mark-functions //初始化界面 -(void)addView{
fanqingtulv
·
2016-04-06 09:00
【
代码笔记
】将400电话中间加上-线
一,代码。-(void)viewDidLoad { [superviewDidLoad]; //Doanyadditionalsetupafterloadingtheview. NSLog(@"--iphone--%@",[selfgetNewPhoneStr1:@"18502368888"]); } #pragma-mark-functions //只需传一个电话进去,可以
Livia.Chen
·
2016-04-05 08:00
【
代码笔记
】检测手机翻转
一,代码。-(void)viewDidLoad{[superviewDidLoad];//Doanyadditionalsetupafterloadingtheview.//监听手机方向改变事件 [[NSNotificationCenterdefaultCenter]addObserver:selfselector:@selector(orientationChanged)name:UIDevic
fanqingtulv
·
2016-04-01 09:00
【
代码笔记
】获取字符串的宽度,高度
一,代码。-(void)viewDidLoad{[superviewDidLoad];//Doanyadditionalsetupafterloadingtheview,typicallyfromanib.//获取字符串的宽度 NSLog(@"获得字符串的宽度:%f",[selfwidthForString:@"我爱你!我爱你!我爱你!我爱你!我爱你!我爱你!我爱你!我爱你!"fontSize:1
fanqingtulv
·
2016-03-31 09:00
JFinal教程JfinalUIB
代码笔记
(9)--- JFinal分页存在的问题
前段时间有位细心的网友跟我说JFinalUIB中的分页存在bug,我很疑惑,但是问题确实存在,调试一番,发现是JFinal的分页方法本身存在这个问题,下面就bug产生的原因和问题做下记录,给所有JFinal学习使用者一个提示和解决方法我们以功能查询页面来测试点击功能管理,进入功能列表,没有任何查询条件,显示所有数据在查询条件中URL中输入“/jf/wx/keyword/view”,不点击查询按钮,
littleant
·
2016-03-30 15:00
【
代码笔记
】获取系统完成任务所需的后台时间
一,代码。AppDelegate.h#import @interfaceAppDelegate:UIResponder@property(strong,nonatomic)UIWindow*window;//添加变量 @property(assign,nonatomic)UIBackgroundTaskIdentifierbackgroundUpdateTask;@end AppDelegate
fanqingtulv
·
2016-03-30 09:00
【
代码笔记
】获得设备型号
一,代码。-(void)viewDidLoad{[superviewDidLoad];//Doanyadditionalsetupafterloadingtheview. NSLog(@"--self-machine-%@",[selfmachineName]);}#pragma-mark-functions //获得设备型号 -(NSString*)machineName{structutsna
fanqingtulv
·
2016-03-29 09:00
【
代码笔记
】获得现在的周的日期
一,代码。-(void)viewDidLoad{[superviewDidLoad];//Doanyadditionalsetupafterloadingtheview,typicallyfromanib. NSLog(@"现在所在的周:%@",[selfgetWeekFromLocal]);}#pragma-mark-functions //获得现在的周的日期,格式:Wednesday -(NS
fanqingtulv
·
2016-03-28 09:00
【
代码笔记
】获得现在的日期
一,代码。-(void)viewDidLoad{[superviewDidLoad];//Doanyadditionalsetupafterloadingtheview,typicallyfromanib.//调用获得现在日期的函数。 [selfgetDateFromLocal];}#pragma-mark-functions //获得现在的日期。格式:2015-03-11 -(NSString*
u010850027
·
2016-03-25 08:00
【
代码笔记
】获得富文本设置以后的文字高度
一,效果图。 二,工程图。三,代码。RootViewController.h#import @interfaceRootViewController:UIViewController@end RootViewController.m#import"RootViewController.h" @interfaceRootViewController()@end @implementationR
u010850027
·
2016-03-24 09:00
【
代码笔记
】获得当前硬盘空间
一,代码。-(void)viewDidLoad{[superviewDidLoad];//Doanyadditionalsetupafterloadingtheview. NSFileManager*fm=[NSFileManagerdefaultManager];NSDictionary*fattributes=[fmattributesOfFileSystemForPath:NSHomeDir
fanqingtulv
·
2016-03-23 09:00
【
代码笔记
】获得当前的月的天数
一,代码。#import"ViewController.h" @interfaceViewController()@end @implementationViewController-(void)viewDidLoad{[superviewDidLoad];//Doanyadditionalsetupafterloadingtheview,typicallyfromanib. NSLog(@"
fanqingtulv
·
2016-03-22 09:00
【
代码笔记
】缓存路径操作类
一,代码。AppDelegate.h#import @interfaceAppDelegate:UIResponder { NSMutableDictionary*cachedData; } @property(strong,nonatomic)UIWindow*window; @end AppDelegate.m#import"AppDelegate.h" #impor
Livia.Chen
·
2016-03-21 09:00
【
代码笔记
】缓存路径操作类
一,代码。AppDelegate.h#import @interfaceAppDelegate:UIResponder { NSMutableDictionary*cachedData; } @property(strong,nonatomic)UIWindow*window; @end AppDelegate.m#import"AppDelegate.h" #impor
Livia.Chen
·
2016-03-21 09:00
【
代码笔记
】缓存路径操作类
一,代码。AppDelegate.h#import @interfaceAppDelegate:UIResponder{NSMutableDictionary*cachedData;}@property(strong,nonatomic)UIWindow*window;@end AppDelegate.m#import"AppDelegate.h" #import"RootViewControl
fanqingtulv
·
2016-03-21 09:00
PHP 观察者设计模式测试
代码笔记
'; } } /** * 观察者2 * Class SaveName */ class SaveName implements Observer { public function update() { echo 'the name has been save '; } } /** * 被观察者接口 * Interface Observe
开发者007号
·
2016-03-18 16:00
【
代码笔记
】后台运行,可以选择在前台或后台或前后台
一,工程图。二,代码。AppDelegate.hAppDelegate.mRootViewController.h#import @interfaceAppDelegate:UIResponder @property(strong,nonatomic)UIWindow*window; @property(nonatomic,unsafe_unretained)UIBackgrou
Livia.Chen
·
2016-03-18 09:00
【
代码笔记
】后台运行,可以选择在前台或后台或前后台
一,工程图。二,代码。AppDelegate.hAppDelegate.mRootViewController.h#import @interfaceAppDelegate:UIResponder@property(strong,nonatomic)UIWindow*window;@property(nonatomic,unsafe_unretained)UIBackgroundTaskIden
fanqingtulv
·
2016-03-18 09:00
JFinal教程JfinalUIB
代码笔记
(8)--- 权限设计和分配
1.JFinalUIB的权限设计值遵循最常见的RBAC模型进行设计和实现的,不熟悉权限设计的童鞋们最好先看看什么是RBAC,网上搜搜很多RBAC设计的表结构,下面是本项目中的设计结构 2.在JFinalUIB中权限分配有两种流程一是:用户-->分组-->角色-->功能首先添加一个用户,并绑定和分组的关系,分组一般是比较固定的,角色一般也是固定的,功能是每开发一个action就录入一个,录入完功能一
littleant
·
2016-03-17 14:00
JFinal教程JfinalUIB
代码笔记
(7)--- URL拦截规则和修改
1.配置jfinal的拦截规则,jfinaldemo中是/*,JFinalUIB中是/jf/*,原因有两点,一是为了处理前端nginx或者Apachehttpserver请求转发时更容易,所有以/jf/开头的都转发给后端servlet容器即可二是避免在不是用前端httpserver的情况下,/*拦截了所有的请求,主要是一些静态资源,如图片、css、js等等,/jf/路径下没有这种静态资源,可以屏蔽
littleant
·
2016-03-17 14:00
【
代码笔记
】和当前时间比较
代码:#import"RootViewController.h" @interfaceRootViewController() @end @implementationRootViewController -(id)initWithNibName:(NSString*)nibNameOrNilbundle:(NSBundle*)nibBundleOrNil { self
Livia.Chen
·
2016-03-17 09:00
【
代码笔记
】和当前时间比较
代码:#import"RootViewController.h" @interfaceRootViewController()@end @implementationRootViewController-(id)initWithNibName:(NSString*)nibNameOrNilbundle:(NSBundle*)nibBundleOrNil{self=[superinitWithN
fanqingtulv
·
2016-03-17 09:00
Redis for .NET 系列之实现分页需求
代码笔记
:vartableName="Table1"; redisClient.AddItemToSortedSet(tableName,"1",1); redisClient.AddItemToSortedSet
jamesbing
·
2016-03-16 16:00
JFinal教程JfinalUIB
代码笔记
(6)--- 日志入库
提示:JFinalUIB的全局通用功能封装几乎都在GlobalHandler、AuthInterceptor、ParamPkgInterceptor,当然其他的几个Base开头的类也算,不过这些Base开头的类更像工具类1.日志model是Syslog,对应的表名是pt_syslog,日志的处理就是Syslog对象从创建到入库的过程2.在接收到url请求时,首先经过GlobalHandler全局处
littleant
·
2016-03-16 09:00
【
代码笔记
】提醒时间的选择
一,效果图。二,工程图。三,代码。RootViewController.h#import @interfaceRootViewController:UIViewController{UITableView*remindTable;intlastIndex;intnowIndex;NSArray*textArray;}@end RootViewController.m#import"RootVie
fanqingtulv
·
2016-03-16 09:00
【
代码笔记
】提醒时间的选择
一,效果图。二,工程图。三,代码。RootViewController.h#import @interfaceRootViewController:UIViewController { UITableView*remindTable; intlastIndex; intnowIndex; NSArray*textArray; } @end RootViewContr
Livia.Chen
·
2016-03-16 09:00
【
代码笔记
】将400电话中间加上-线
一,代码。-(void)viewDidLoad{[superviewDidLoad];//Doanyadditionalsetupafterloadingtheview. NSLog(@"--iphone--%@",[selfgetNewPhoneStr1:@"18502368888"]);}#pragma-mark-functions //只需传一个电话进去,可以返回一个处理好的加了-线的400
fanqingtulv
·
2016-03-16 09:00
【
代码笔记
】关于UIFont的一些define
一,效果图。二,工程图。三,代码。RootViewController.h#import @interfaceRootViewController:UIViewController @end RootViewController.m#import"RootViewController.h" #import"Utils.h" @interfaceRootViewControlle
Livia.Chen
·
2016-03-15 10:00
【
代码笔记
】关于UIFont的一些define
一,效果图。二,工程图。三,代码。RootViewController.h#import @interfaceRootViewController:UIViewController @end RootViewController.m#import"RootViewController.h" #import"Utils.h" @interfaceRootViewControlle
Livia.Chen
·
2016-03-15 10:00
【
代码笔记
】关于UIFont的一些define
一,效果图。二,工程图。三,代码。RootViewController.h#import @interfaceRootViewController:UIViewController@end RootViewController.m#import"RootViewController.h" #import"Utils.h" @interfaceRootViewController()@end
fanqingtulv
·
2016-03-15 09:00
【
代码笔记
】根据size截取屏幕中间矩形区域
代码:RootViewController.m#import"RootViewController.h" @interfaceRootViewController()@end @implementationRootViewController-(id)initWithNibName:(NSString*)nibNameOrNilbundle:(NSBundle*)nibBundleOrNil{
fanqingtulv
·
2016-03-14 09:00
【
代码笔记
】根据size截取屏幕中间矩形区域
代码:RootViewController.m#import"RootViewController.h" @interfaceRootViewController() @end @implementationRootViewController -(id)initWithNibName:(NSString*)nibNameOrNilbundle:(NSBundle*)nib
Livia.Chen
·
2016-03-14 09:00
【
代码笔记
】给UIImageView加上圆角效果
一,效果图。二,代码。RootViewController.m#import"RootViewController.h" @interfaceRootViewController() @end @implementationRootViewController -(id)initWithNibName:(NSString*)nibNameOrNilbundle:(NSBun
Livia.Chen
·
2016-03-11 09:00
【
代码笔记
】给UIImageView加上圆角效果
一,效果图。二,代码。RootViewController.m#import"RootViewController.h" @interfaceRootViewController()@end @implementationRootViewController-(id)initWithNibName:(NSString*)nibNameOrNilbundle:(NSBundle*)nibBund
fanqingtulv
·
2016-03-11 09:00
【
代码笔记
】iOS-给背景图加上移动的手势
一,工程图。二,效果图。三,代码。RootViewController.h#import@interfaceRootViewController:
[email protected]
#import"RootViewController.h"@interfaceRootViewController()@end@implementationRootViewC
菜鸟and小白
·
2016-03-10 09:36
iOS-代码笔记
【
代码笔记
】给背景图加上移动的手势
一,工程图。二,效果图。三,代码。RootViewController.h#import @interfaceRootViewController:UIViewController @end RootViewController.m#import"RootViewController.h" @interfaceRootViewController()@end @implementation
fanqingtulv
·
2016-03-10 09:00
【
代码笔记
】给背景图加上移动的手势
一,工程图。二,效果图。三,代码。RootViewController.h#import @interfaceRootViewController:UIViewController @end RootViewController.m#import"RootViewController.h" @interfaceRootViewController() @end @
Livia.Chen
·
2016-03-10 09:00
【
代码笔记
】给背景图赋值颜色
代码:-(void)viewDidLoad { [superviewDidLoad]; //Doanyadditionalsetupafterloadingtheview. //写法比较新奇 UIColor*bgColor=[UIColorredColor]; self.view.backgroundColor=bgColor; }
Livia.Chen
·
2016-03-09 09:00
【
代码笔记
】给背景图赋值颜色
代码:-(void)viewDidLoad{[superviewDidLoad];//Doanyadditionalsetupafterloadingtheview.//写法比较新奇 UIColor*bgColor=[UIColorredColor];self.view.backgroundColor=bgColor;}
fanqingtulv
·
2016-03-09 09:00
【
代码笔记
】点击城市中的tableView跳转到旅游景点的tableView,下面会有“显示”更多。
一,效果图。二,工程图。三,代码。RootViewController.h#import @interfaceRootViewController:UIViewController { UITableView*_tableView; NSMutableArray*provinceArray; } @end RootViewController.m#import"RootVi
Livia.Chen
·
2016-03-08 09:00
【
代码笔记
】点击城市中的tableView跳转到旅游景点的tableView,下面会有“显示”更多。
一,效果图。二,工程图。三,代码。RootViewController.h#import @interfaceRootViewController:UIViewController{UITableView*_tableView;NSMutableArray*provinceArray;}@end RootViewController.m#import"RootViewController.h"
fanqingtulv
·
2016-03-08 09:00
【
代码笔记
】钢琴小游戏
一,效果图。二,工程图。三,代码。RootViewController.h#import //加入头文件 #import @interfaceRootViewController:UIViewController { NSString*soundFile; } @end RootViewController.m#import"RootViewController.h"
Livia.Chen
·
2016-03-07 09:00
【
代码笔记
】钢琴小游戏
一,效果图。二,工程图。三,代码。RootViewController.h#import //加入头文件 #import @interfaceRootViewController:UIViewController { NSString*soundFile; } @end RootViewController.m#import"RootViewController.h"
Livia.Chen
·
2016-03-07 09:00
【
代码笔记
】钢琴小游戏
一,效果图。二,工程图。三,代码。RootViewController.h#import //加入头文件 #import @interfaceRootViewController:UIViewController{NSString*soundFile;}@end RootViewController.m#import"RootViewController.h" @interfaceRootV
fanqingtulv
·
2016-03-07 09:00
【
代码笔记
】Java基础:Java的方法和类
Java作为一种面向对象的语言,具备三大特性(面向对象的核心):封装性 继承性 多态性封装性:就是打包,所有东西都是打包好的。继承:子类可以继承父类文件名:Student.java1publicclassStudent{ 2publicStringname; 3publicintage; 4 5publicvoidstudy(){ 6System.out.println("学生学习"
时孚
·
2016-03-06 09:00
【
代码笔记
】Java基础:类的继承(构造器)
在Java中,创建对象的格式为:类名 对象名 =new 类名();如:1JFramejf=newJFrame(); 一个对象被创建出来时,经常要先做一些事这个对象才能正常使用,也可以说是准备工作,比如给这个对象赋些初始值,或者先运行一些别的方法。这时候就需要一个“构造器”用于:构造对象初始化属性这样,把那些在创建时要做的事写在构造方法里,每次创建就会被执行一遍。我们常见的一种Java格式:publ
时孚
·
2016-03-05 00:00
【
代码笔记
】改变文字输入框背景
一,效果图。二,工程图。三,代码。RootViewController.h#import @interfaceRootViewController:UIViewController @end RootViewController.m-(void)viewDidLoad { [superviewDidLoad]; //Doanyadditionalsetupafterloadi
Livia.Chen
·
2016-03-04 09:00
上一页
12
13
14
15
16
17
18
19
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他