- 浏览: 41102 次
最新评论
-
peng13123:
...
Hibernate4+Spring3+SpringMVC -
peng13123:
好吧,呵呵zxxwlj 写道 翻/墙?违法。。。
我想问为啥我goagent的文章被删除了 -
zxxwlj:
翻/墙?违法。。。
我想问为啥我goagent的文章被删除了
文章列表
SpringMVC下使用URI Template
- 博客分类:
- java
@RequestMapping("/{someID}")
public @ResponseBody int getAttr(@PathVariable(value="someID") String id,
@RequestParam String someAttr) {
}
js实现点击图片切换另一图片,再次点击恢复
- 博客分类:
- js html
<script>
function change_pic(){
var imgObj = document.getElementById("pic");
var Flag=(imgObj.getAttribute("src",2)=="1.png")
imgObj.src=Flag?"2.png":"1.png";
}
</script>
<img src="1.png" class="pic_size" id=& ...
select id_,price_ from ap_car a where open_ = 1 and exists(
select 1 from ap_car where a.price_=price_
group by price_ having count(*)>1 and min(id_)<a.id_
) order by price_ desc;
今天发现一张图片上传到网站上的时候,打不开,刚开始我以为是图片没有上传上去,可是我在真个程序中找到了这张图,同时我用ACDSee和Windows图片和传真查看器都可以打开,我就想这么奇怪吗,图片很定是有的,上网查了很久,找到一篇繁体中文的文章,说图像模式不对,我立即查看图片发现,图片的模式真的是CMYK模式的,改正为RGB模式就好了(害怕有人不知道怎样改模式,请使用photoshop等图片编辑软件修改)。
判断手机用户自动跳转手机版网站
- 博客分类:
- js html
借用了百度的。<script src="http://siteapp.baidu.com/static/webappservice/uaredirect.js" type="text/javascript"></script>
<script type="text/javascript">uaredirect("/m_index.m");</script>
//连续返回两级
int index=[[self.navigationController viewControllers]indexOfObject:self];
[self.navigationController popToViewController:[self.navigationController.viewControllers objectAtIndex:index-2]animated:YES];
//切换根
AppDelegate *app = [[UIApplication sharedApplication]delegate];
app.wind ...
不用segue的viewcontroller跳转
- 博客分类:
- ios
从一个Controller跳转到另一个Controller时,一般有以下2种:
1、利用UINavigationController,调用pushViewController,进行跳转;这种采用压栈和出栈的方式,进行Controller的管理。调用popViewControllerAnimated方法可以返回。
PickImageViewController *ickImageViewController = [[PickImageViewController alloc] init];
[self.navigationController pushViewControl ...
staticNSString *CustomCellIdentifier =@"CellIdentifier";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier: CustomCellIdentifier];
if (cell ==nil) {
NSArray *nib = [[NSBundle mainBundle]loadNibNamed:@"Cell" owner:self options:nil];
// ...
update car set manager_id = 1 where manager_id = 2 limit 60;
html frameset
- 博客分类:
- js html
今天一个小学弟问我html框架,这个搭搭简单后台还是可以的,这边就复制了一些:
================================
框架概念 :
所谓框架便是网页画面分成几个框窗,同时取得多个 URL。只 要 <FRAMESET> <FRAME> 即可,而所有框架标记 要放在一个总起的 html 档,这个档案只记录了该框架 如何划分,不会显示任何资料,所以不必放入 <BODY> 标记,浏览这框架必须读取这档 案而不是其它框窗的档案。<FRAMESET> 是用以划分框窗,每一框窗由一个 <FRAME> 标 记所标示,< ...
1.如何修改自动ARC?
选中你的Project
选择TARGETS里面的你的App
点击上方Build Phases
展开Compile Sources
找到你的非ARC代码源文件
双击后面的空白部分,输入-fno-objc-arc
2.在项目中如何关闭XCode ARC机制
在开发中的项目在项目设置的build setting中搜索garbage关键字就可以看到这个选项了,然后选择NO再次运行各种release就不会报警了
<html>
<head>
<script type="text/javascript">
function validate_required(field,alerttxt)
{
with (field)
{
if (value==null||value=="")
{alert(alerttxt);return false}
else {return true}
}
}
function validate_form(thisform)
{
with (th ...
1,getter=getterName,setter=setterName,设置setter与getter的方法名
2,readwrite,readonly,设置可供访问级别
2,assign,setter方法直接赋值,不进行任何retain操作,为了解决原类型与环循引用问题
3,retain,setter方法对参数进行release旧值再retain新值,所有实现都是这个顺序(CC上有相关资料),计数器
4,copy,setter方法进行Copy操作,与retain处理流程一样,先旧值release,再Copy出新的对象,retainCount为1。这是为了减少对上下文的依赖而引入的机 ...
【转】IOS NScoding 序列化
- 博客分类:
- ios
开篇
1到底这个序列化有啥作用?
面向对象的程序在运行的时候会创建一个复杂的对象图,经常要以二进制的方法序列化这个对象图,这个过程叫做Archiving. 二进制流可以通过网络或写入文件中(来源于某教材的一段话)
本人的 ...