- 浏览: 54511 次
- 性别:
- 来自: 广州
最新评论
-
雁行:
还是报同样的错误
请求https错误: unable to find valid certification path to requested target -
839235027:
CGContextRef context = CGBitmap ...
iPhone 彩色图片转变为黑白图片 -
javaEEdevelop:
要参数是吧,干吗不说啊,白搭
请求https错误: unable to find valid certification path to requested target -
jems:
...
请求https错误: unable to find valid certification path to requested target -
zpchen:
代码没个注释,白搭!
请求https错误: unable to find valid certification path to requested target
文章列表
Degrees,Radians相互转换
CGFloat DegreesToRadians(CGFloat degrees) {return degrees * M_PI / 180;};
CGFloat RadiansToDegrees(CGFloat radians) {return radians * 180 / M_PI;};
精确的时间差
NSTimeInterval begin = CFAbsoluteTimeGetCurrent();
...
NSTimeInterval gap = (CFAbsoluteTimeGetCurrent() - begin);
得到year,mo ...
自己写的一个图片展示
- 博客分类:
- iPhone
MediaComponentView.h
//
// MediaComponentView.h
// MediaComponent
//
// Created by Jason Wang on 10/7/10.
// Copyright 2010 __MyCompanyName__. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface MediaComponentView : UIView <UITableViewDelegate,UITableViewDataSource& ...
CGRect imageRect = CGRectMake(0, 0, image.size.width, image.size.height);
// 创建gray的CGColorSpaceRef
CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceGray();
// 创建CGContextRef
CGContextRef context = CGBitmapContextCreate(nil, image.size.width, image.size.height, 8, 0, colorSpace, kCGImag ...
iphone 处理单击和双击Touch
- 博客分类:
- iPhone
如果以不同的方式响应单击和双击事件时,就会出现复杂的情况。那么如何知道一个单击不是另一个双击的起始部分呢?一下代码可以用来处理处理这种情况:
在你的UIView或UIViewController里重载touchesBegan和touchesEnded方法:
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
UITouch *touch = [touches anyObject];
if ([touch tapCount] == 2) {
[NSObject cancelPrevious ...
在ios4.0以前的version,使用uiwebview播放视频只需要;
UIWebView *videoView = [[UIWebView alloc] initWithFrame:CGRectMake(0,0,0,0)];
[self addSubview:videoView];
但在ios4.0及以后,必须设置frame:
UIWebView *videoView = [[UIWebView alloc] initWithFrame:CGRectMake(1,1,1,1)];
[self addSubview:videoView];
现在有两张表,文章(Article) 和 目录(Category).
找出某些个目录中的所有文章的hql:
from Article as a left join a.categories as c where c.id in(:ids)
找出某些目录中但不属于指定目录(id=xxx)的hql:
from Article a where a in (select elements(c.articles) from Category c where c.id in (:ids)) and a not in (select elements(c.articles) from Category ...
当java客户端请求实现https协议的服务时,出现异常:'unable to find valid certification path to requested target'
是因为服务期端的证书没有被认证,需要做的是把服务端证书导入到java keystore。可以附件中的java类实现。
使用方法:
% java InstallCert web_site_hostname_
这个java类会打开一个连接到你指定的host,开始握手过程。如果出现异常会打印到控制台并且会显示服务端所使用的证书,此时它会问你是否要把证书加入到你的keystore。如果你不想加,输入"q& ...
1. 首先请求是https或者需要证书签名的,需要把证书和private key导入java 的keystore。不过一般.net服务端给的证书是.pfx格式的,我也没找到太好的办法导入,于是就把证书转换成jks的,然后重命名为cacerts,此时你需要把keystore的密码改为"changeit"。
2. 我用的是axis2 1.5.1 和 rampart 1.4 , 如果wsdl如果存在多个endpoint的时候,用wsdl2java工具生成客户端是会抛错: "can not determine the MEP ".
3. 配置sts-con ...
客户端接收代码:
function callback() //回调函数,对服务端的响应处理,监视response状态
{
if(req.readystate==4) //请求状态为4表示成功
{
if(req.status==200) //http状态200表示OK
{
//所有状态成功,执行此函数,显示数据
}
}
}
结果。。。。。没成功!!!
用IE或FF(firefox)连接发送信息,接收数据的的IE或FF并没有任何数据显示出来。于是用sinffer录了一下网络包,发现数据其实已经从t ...
- 2009-11-22 20:53
- 浏览 5149
- 评论(1)
1. import org.apache.commons.httpclient.HttpClient;
2. import org.apache.commons.httpclient.HttpMethod;
3. import org.apache.commons.httpclient.HttpStatus;
4. import org.apache.commons.httpclient.URIException;
5. import org.apache.commons.httpclient.methods.GetMethod;
6. i ...
- 2009-11-22 20:48
- 浏览 4410
- 评论(0)