`
文章列表
    httpAnalyzer   http debugger   http://www.fiddler2.com/fiddler2/   wireshark    smartsniff         java内存泄露分析 MemoryAnalyzer

MD5 SHA1 Base64 HmacSHA1

    博客分类:
  • J2EE
MD5 SHA1   import java.security.MessageDigest;   MessageDigest sha1 = MessageDigest.getInstance("SHA-1");     Base64 /** * */ /** * @author jinbinhan * */ /* * Copyright (C) 2010 The Android Open Source Project * * Licensed under the Apache License, Version ...

iOS 6 设备转向问题

    博客分类:
  • ios
iOS 6 对设备转向时 View Rotations 的处理完全不一样了   Handling View Rotations In iOS 6, your app supports the interface orientations defined in your app’s Info.plist file. A view controller can override thesupportedInterfaceOrientations method to limit the list of supported orientations. Generally, the syste ...
任务  找出文件夹下所有png的文件的文件名, 复制xxx.html  为    文件名.html 并且把xxx.html内容中的xxx  替换为 文件名       ls | grep .png | sed 's/\.png\*//'   | ./cp.sh         cp.sh     while read ip do     sed 's/xxx/'"$ip"'/g'  xxx.html >  $ip.html done         ============================== 统计sel ...

java 汉字 \u 转换

 
        import org.apache.commons.lang.StringEscapeUtils; public class TestHK { public static void main(String[] args) { System.out.println(StringEscapeUtils.escapeJava("您的請求已期")); System.out.println("\u5BA2\u6236\u652F\u63F4"); System.out.pr ...
*******       /** * 设置操作 * @param permission 哪一位 * @param yes 允许 或 不允许 */ public void setPermission(int permission, boolean yes) { //进行位运算 int temp=1; //移位 000001 0000010 00000100 00001000 temp=temp << permission; if(yes){ //目标是设置为可操作 将操作为设置为1 其他位不变 ...
查看所有struts2映射到的url      2个办法 1. Use the Configuration Browser PluginAdd the Config Browser Plugin plugin to the lib folder or maven dependencies, and then visit: http://localhost:8080/CONTEXT/config-browser/index.action, to see the current action mappings.  2. RuntimeConfiguration ...
在shell编程中我们可以通过$1拿到参数  如    ./myscript.sh   aaaa 这时  $1 就是  aaaa     但假如我们想拿到通道给我们的标准输入呢? 如    ls -l  |  ./myscript.sh   想拿到 ls -l 的输出呢     这时可以这样 while read inputline do echo input = $inputline done  
现在系统有一个弹出的日期选择窗口, 要求在窗口弹出后, 点击窗口以外的地方,窗口要隐藏   解决方法代码     $("#dateimg").click( function(event){ new Calendar(null, null, 0).show($("#dateinput")[0],$("#dateimg")[0]); event.stopP ...

ios5 支持 json 转化

    博客分类:
  • ios
 
------   解析json成dic对象 -(void)fetchedData:(NSData*)responseData {//parse out the json dataNSError* error; NSDictionary* json =[NSJSONSerialization JSONObjectWithData:responseData //1 options:kNilOptions error:&error]; NSArray* latestLoans =[json ...
  自动下载 000.jpg-199.jpg   ./wget.sh     http://www.163.com/   for((i=0;i<2;i++)) do for((j=0;j<=9;j++)) do for((k=0;k<=9;k++)) do `wget $1/$i$j$k.jpg` done ...

jqgrid 隔行变底色

    博客分类:
  • js
jgrid默认配置没有 隔行变底色的选项 查看源码  看他怎么给row添加class的  找到了addRowData 方法     addRowData : function(rowid,rdata,pos,src) { 。。。。。。。。。。 row = "<tr id=\""+rowid+"\" role=\"row\" tabindex=\"-1\" class=\"ui-widget- ...
想要禁止 struts2 应用中  部分jsp  的 直接访问   简单的做法是放到WEB-INF 下    然后   <result name="success">/WEB-INF/jsp/LoginSuccess.jsp</result>   这里注意几点 1.  return type 只能 forward, 不能redirect 2.  WEB-INF 下的jsp和webRoot下的资源的访问路径问题 假设在/WEB-INF/jsp/LoginSuccess.jsp 中要引用个图片在WebRoot/img/01.jpg ...

ios 添加字体

    博客分类:
  • ios
<!--?xml version="1.0" encoding="UTF-8" standalone="no"?--> 1、确定你的项目工程的resouce下有你要用的字体文件(.ttf,.odf)。 2、然后在你的工程的Info.plist文件中新建一行(Add Row),添加key为:UIAppFonts,类型为Array添加Value为XXX.ttf(你字体的名字)。 key为Item 0,值为xxxx.ttf。是这样,可以添加多个,使用的时候写对应字体名字就行。 3、在你的项目里要用字体的时候  xx.fon ...

jboss-log4j.xml

    博客分类:
  • J2EE
使用 jboss_home/server/default/conf下的  jboss-log4j.xml 配置log4j   要注意的 1. 这个是针对所有这个server下的webapp的, 所以rootlogger设法不能和单独log4j的配置一样 2. webapp下的log4j.properties,  log4j.jar 都去掉,防止干扰 3. copy  jboss_home/lib 下的 commons-logging.jar, jboss-common.jar到你的webapp  WBE_INF/lib里, 不然会有个不相容的错误 (我的环境是jboss-4.2.3.GA ...
Global site tag (gtag.js) - Google Analytics