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
Web-代码笔记
【
代码笔记
】将图片处理成圆的
一,效果图。二,工程图。三,代码。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
Eclipse修改Format不换行 详解
CodeStyle->Formatter点击New来创建一个自己喜欢的风格(好像不能修改系统提供的风格)在LineWrapping修改Maximumlinewidth为200就可以了修改JSP/HTML文件:
Web
chenshun123
·
2016-04-02 21: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
jsp+tomcat+ 创建工程 配置工程
*点击file->new->project->
web-
>dynamicwebprojectprojectname自定义***工程基本建立完毕,现在开始配置,要用到我们下载的tomcat*** 点击window
u013565163
·
2016-03-26 03:00
java
eclipse
tomcat
jsp
ee
eclipse 设置默认编码为Utf-8 详细教程。
JSP最下面设置为UTF-8 Window->Preferences->General->Workspace 面板Textfileencoding选择UTF-8 Window->Preferences->
Web
Mc小冰
·
2016-03-25 17: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
Maven包引用出现重复包,去重复包3种方法(javassist)
要去掉一个javassist包1.使用maven中的pulgin功能 org.apache.maven.plugins maven-war-plugin 2.0.2
WEB
仰望天空的黑马
·
2016-03-17 16:00
java
maven
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
Tomcat配置Basic Authentication
添加依赖库因为需要获取用户登录的用户名和密码,所以使用了apache的commons-codec库来解码,可以从apache的网站上下载commons-codec-1.10.jar包,并放到myapp/
WEB
kongxx
·
2016-03-17 09:52
Java
Tomcat配置Basic Authentication
添加依赖库因为需要获取用户登录的用户名和密码,所以使用了apache的commons-codec库来解码,可以从apache的网站上下载commons-codec-1.10.jar包,并放到myapp/
WEB
kongxx
·
2016-03-17 09:00
tomcat
【
代码笔记
】和当前时间比较
代码:#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
MapR大数据融合平台正式上市,每秒可处理近2千万笔信息
MapR融合数据平台将Hadoop和Spark、网络规模(
Web-
陈晨luminous
·
2016-03-15 11:05
【
代码笔记
】关于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
开发工具优化(不定时更新)
Text->JSP设置为UTF-8Window->Preferences->General->Workspace-Textfileencoding设置为UTF-8Window->Preferences->
Web
zhanglunc
·
2016-03-12 13:24
Java
开发
file
各相关开发工具优化使用
开发工具优化(不定时更新)
>JSP设置为UTF-8 Window->Preferences->General->Workspace -Textfileencoding设置为UTF-8 Window->Preferences->
Web
zhanglunc
·
2016-03-12 13:24
java
开发
style
File
general
【
代码笔记
】给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
上一页
17
18
19
20
21
22
23
24
下一页
按字母分类:
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
其他