- 浏览: 246210 次
- 性别:
- 来自: 武汉
最新评论
-
zhuzhiyi1211:
loveismile 写道可否在android assets ...
ijetty -
loveismile:
可否在android assets 目录下建立 web项目,都 ...
ijetty -
fangleijiang:
为什么任何ip都可以ping通
JAVA实现Ping,需要Jpcap -
tanhao_wenyu:
楼主 能发一下Dx工具吗?可以加QQ:1126900879聊一 ...
ijetty -
niuyong_10086:
楼主,你的第四步是啥意思啊
ijetty
文章列表
ClassPool pool = ClassPool.getDefault();
pool.insertClassPath("D:\\CODE\\jbex-v1.2.3-eval\\");
CtClass cc = pool.get("com.moyosoft.exchange.ws.bx");
CtMethod method = cc.getDeclaredMethod("h");
method.setBody("{return false;}");
CtMethod method2 ...
1、开始-->运行-->regedit-->确定,进入注册表。
2、查看HKEY_LOCAL_MACHINESYSTEMControlSet002Control与
HKEY_LOCAL_MACHINESYSTEMControlSet001Control两项中是否有StorageDevicePolicies子项,且该子项中是否有WriteProtect值,如果有则将其值改为0后跳到第5步;如没有则进行下一步。
3、查看HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlStorageDevicePolicies
如无Storage ...
[self presentModalViewController:editUI animated:YES]; //跳转界面
editUI = [[EditUI alloc] initWithNibName:@"EditUI" bundle:nil]; //初始化UIViewController
if([self parentViewController])
{
[[self parentViewController] dismissModalViewControllerAnimated:YES];
}
else
{ ...
以前都用IOS4开发,现在在5下边有些地方会出现Bug,发现的几个贴出来(方便自己以后用),以后再陆续添加,也欢迎大家补充
一、 中文键盘
IOS5中文键盘高度改变(由以前的216变成252),会造成部分输入框被遮挡现象可以用UIKeyboardWillShowNotification(键盘即将弹出通知名称)、UIKeyboardWillHideNotification(键盘即将消失通知)来获得键盘的高度并进行对应的操作
Didload中
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(ke ...
1.singleton
2.prototype
3.request
4.session
5.singleSession
三种注入方式:
1.set注入
2.construct注入
3.接口注入
http://blog.csdn.net/berniebd/article/details/6415511
http://www.ibm.com/developerworks/cn/java/j-cq08296/
http://testng.org/doc/documentation-main.html#logging
https://weblogs.java.net/blog/johnsmart/archive/2009/11/28/data-driven-tests-junit-4-and-excel
public static String readLine(InputStream is)
{
StringBuffer result = new StringBuffer();
char readByte = 0;
try {
while((readByte=(char)(0x00ff&is.read()))!=10)
{
result.append(readByte);
}
} catch (Exception e) {
e.printStackTrace();
}
return result.toString();
}
GzipinputStream如果读的bytearrayinputstream的数组不完全,这会报java.io.EOFException
1.拷贝manger、host-manager到webapps下
2.在conf/server.xml中添加
<GlobalNamingResources>
<!-- Editable user database that can also be used by
UserDatabaseRealm to authenticate users
-->
<Resource name="UserDatabase" auth="Container"
type=& ...
C语言写的Linux平台socks5代理程序
信息来源:邪恶八进制信息安全团队(www.eviloctal.com)
前几天MSN老上不去,我还以为是公司做了防火墙限制。于是把去年这个时候写得一个代理程序改了改,拿出来用。结果发现MSN是因为微软的 ...