- 浏览: 659983 次
- 性别:
- 来自: 常州
最新评论
-
anny101:
想转发一下,不知道怎么转发。评论一下吧。方便查看。
fetch = FetchType.EAGER 作用 -
Navee:
果然我这也是是防火墙问题
解决 Linux 安装 httpd局域网无法访问 -
dhyang909:
...
oracle 10g+ 行列转换 -
国产希特勒:
真强,居然有人把公司的面试题挂到javaeye上了
锦江国际的一道面试题(很简单) -
tomfish88:
比如我要拦截不同业务的service类里面的方法 @Poi ...
Spring AOP annotation 拦截表达式 分析
文章列表
jeasyui,jquery某些经常使用方法
- 博客分类:
- jquery
tabs判断是否打开某个页签
var flag = $('#center_tab').tabs('exists', menuName);
从一个子页面中得到父页面的另一个子页面(iframe)的jeasyui的元素
parent.frames["menu-tab-frame-001001036"].$("#rssi_cCode").textbox("setValue", cCode);
jquery 得到radiobox是否选中的方法
var today = $('input:radio[name=" ...
assign,copy,strong等关键字用法
- 博客分类:
- IOS
模型中,NSString用copy
在.h.m中,NSString用strong
int等,用assign
//一般oc对象用strong修饰
@property(nonatomic,strong)NSArray *images;
//模型做为属性,用strong修饰
两个XML配置中,需要把扫描的类区分出来。
spring-mybatis.xml(application.xml):
<!-- 自动扫描 -->
<context:component-scan base-package="com.maiken" >
<!-- 父容器不加载 action -->
<context:exclude-filter type="annotation" expression="org.springframework.st ...
<!-- 处理请求时返回json字符串的中文乱码问题 -->
<mvc:annotation-driven>
<mvc:message-converters>
<bean class="org.springframework.http.converter.StringHttpMessageConverter">
<property name="supportedMediaTypes">
<list>
<value> ...
android apk 升级代码
- 博客分类:
- android
在闪屏中处理升级。
加入两项权限:
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
style.xml中加入以下代码,去掉标题栏
<!-- Application theme. -->
<style name="AppTheme&quo ...
默认样式中,去掉标题栏
- 博客分类:
- android
style.xml中的AppTheme中,加入一行
<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
<item name="android:windowNoTitle"&g ...
树莓派/香蕉派 pro 跑马灯
- 博客分类:
- 树莓派/香蕉派
拿到香蕉派pro,为了熟悉树莓派的系统和python控制GPIO,写个跑马灯玩玩。
1、sudo apt-get update
2、sudo apt-get install python-dev
3、按github安装香蕉派pro的rpi.gpio
4、香蕉派pro代码,6个二极管闪烁三次后,开始跑马灯,执行两次后,再次闪烁三次。
import RPi.GPIO as GPIO
import time
# 声明针脚
PIN_8 = 8
PIN_10 = 10
PIN_11 = 11
PIN_13 = 13
PIN_15 = 15
PIN_31 = 31
...
// tableView初始化时,下移20个单位,但拖拽时,数据还是会覆盖status bar
self.tableView.contentInset = UIEdgeInsetsMake(20,0,0,0);
<plist version="1.0">
<array>
<dict>
<key>name</key>
<string>天天酷跑</string>
<key>icon</key>
<string>icon_00</string>
</dict>
<dict>
<key>name</key>
<string>全民飞机大战< ...
转的
要输出的格式化占位:
%@ 对象
%d, %i 整数
%u 无符整形
%f 浮点/双字
%x, %X 二进制整数
%o 八进制整数
%zu size_t
%p 指针
%e 浮点/双字 (科学计算)
%g 浮点/双字
%s C 字符串
%.*s Pascal字符串
%c 字符
%C unichar
%lld 64位长整数(long long)
%llu 无符64位长整数
%Lf 64位双字
NSLog定义在NSObjCRuntime.h中,如下所示:
void NSLog(NSString *format, ...
mongodb设置用户名密码
- 博客分类:
- mongoDB
以下设置为windows平台
a、先用mongod --dbpath ../data登录后,use admin
b、db.addUser('sa','密码');
c、然后关掉服务,启动服务时,加上mongod --dbpath ../data --auth
d、mongo.exe
e、use admin
f、db.auth('sa','密码');
这样就能use ****等其他collection了
ios 获取屏幕的属性和宽度
- 博客分类:
- IOS
app尺寸,去掉状态栏CGRect r = [ UIScreen mainScreen ].applicationFrame;r=0,20,320,460屏幕尺寸CGRect rx = [ UIScreen mainScreen ].bounds;r=0,0,320,480状态栏尺寸
IOS 控件带动画移动
- 博客分类:
- IOS
-(IBAction)move:(UIButton *) button {
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.5];
// 不允许直接修改某个对象的结构体成员
CGRect tempFrame = self.image.frame;
if (button.tag == 1) {
// 上
NSLog(@"上");
tempFrame.origin.y = ...
上下文设置:
服务器端基于Mina开发,心跳包25秒发一次0D+0A,客户端收到后,回0D-0A
因为客户端设置了60秒一次心跳包,所以心跳包有服务器端先发起。
客户端心跳过滤器代码:(服务器端代码就不贴了,差不多的)
package com.mina.client;
import java.text.SimpleDateFormat;
import java.util.Date;
import org.apache.mina.core.buffer.IoBuffer;
import org.apache.mina.core.session.IdleSta ...
public class Test {
public static void main(String[] args) {
IoBuffer buffer = IoBuffer.wrap(new byte[]{0x0D, '+', 0x0A});
System.out.println(buffer); // HeapBuffer[pos=0 lim=3 cap=3: 0D 2B 0A]
System.out.println("remaining:" + buffer.remaining()); // remaining:3
byte ...