`
Harold_xlp
  • 浏览: 154258 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论
文章列表
使用Dex2jar和XJAD配合使用反编译APK源码 具体步骤: 首先将apk文件后缀改为zip并解压,得到其中的classes.dex,它就是java文件编译再通过dx工具打包而成的,将classes.dex复制到dex2jar.bat所在目录dex2jar文件夹。 在命令行下定位到dex2jar.bat所在目录
  在开发Android应用时必须遵守单线程模型的原则: Android UI操作并不是线程安全的并且这些操作必须在UI线程中执行。在单线程模型中始终要记住两条法则: 1. 不要阻塞UI线程 2. 确保只在UI线程中访问Android UI工具包       当 ...
FastDFS、nginx配置手记 (2012-01-20 15:27:19)转载▼标签: fastdfsmogilefshdfsnginxtaobao分布式文件系统 分类: Web应用  第一部分   FastDFS介绍 1.FastDFS是什么     FastDFS是一款类Google FS的开源分布式文件系统,它用纯C语言实现,支持L ...
在使用mybatis的过程中,当出现找不到参数值的情况的时候,问题主要是因为配置文件中的namespace 不正确导致的,namespace的值应该设置为接口mapper,详细参考下面的配置信息; Exception in thread "main" java.lang.IllegalArgumentException: Mapped Statements collection does not contain value for     at org.apache.ibatis.session.Configuration$StrictMap.get(Configurati ...
JavaMailSenderImpl认证异常了,出现:javax.mail.AuthenticationFailedException: failed to connect的异常, 将JAVAMAIL的DEBUG日志打开,通过properties.setProperty("mail.debug", "true");可以看到出现了535 5.7.3 Authentication unsuccessful的问题,需要增加以下设置: properties.put("mail.smtp.auth", "true"); ...
在开发WEBSERVICES的时候,出现了"org.w3c.dom.DOMException: HIERARCHY_REQUEST_ERR: 试图在不允许插入节点的地方插入节点", 这个异常,需要查看下LIB包目录下是否有以下情况: 1.war包内的servlet.jar删掉。 2.添加这个jar包:saaj-impl-1.3.18_1.jar。
本文来自: http://www.cnblogs.com/sdlfx/archive/2011/01/23/1942696.html sqlserver对于字符串的处理比较弱,replace函数也仅仅支持用字符串来作为匹配项,要是需要使用正则表达式,就只能通过系统存储过程来调用VB组件来实现了,下面是两个写好的正则函数: 测试是否匹配: GO CREATE FUNCTION dbo.regexIsMatch ( @source varchar(5000),   --需要匹配的源字符串 @regexp varchar(1000),  --正则表达式 @ignorecase bit = ...
本文来自:http://www.codesky.net/article/200707/119054.html 工程打包成.war部署到WebLogic后,出现如下问题: Error: weblogic.management.DeploymentException: Cannot set web app root system property when WAR file is not expanded - with nested exception: [java.lang.IllegalStateException: Cannot set web app root system pro ...
使用JQUERY发送请求到后台,通过GETJSON方法,在发送中文的时候,出现发不出去的情况,但英文字母或者数据都可以,通过在页面上使用 encodeURI(encodeURI($("#message").val()))这个功能将中文进行处理,这里的message是一个页面上的ID,然后在后台将这个变量的数据进行获取,通过URLDecoder.decode(URLDecoder.decode(msgTsend,"utf-8"),"utf-8");这个方法来处理! 前端如果没有指定编码,也可以使用下面的方式: encodeURI(en ...
pdadmin> login -a 用户 -p 密码 -d 域名 pdadmin cnextadmin@external_cn> server list pdadmin cnextadmin@external_cn> server show default-webseald-cniweb01.cmc-xinnuo .com pdadmin cnextadmin@external_cn> server task default-webseald-cniweb01.cmc-xinnuo .com list pdadmin cnextadmin@external_cn> ...
FileNet中访问PE的方法: 第一种在环境中设置"filenet.pe.bootstrap.ceuri"这个变量: Connection p8Connection = Factory.Connection .getConnection("http://servername:9080/wsi/FNCEWS40MTOM/"); Subject subject = UserContext.createSubject(p8Connection, "username", "password", &qu ...
本文来自: http://hi.baidu.com/ttaini1000/item/e6be810fcfe61711acdc7002 集成Websphere Application Server 5.0与IIS 5.0 (闫利文收藏)IIS(Microsoft Internet Information Server)是目前使用比较广泛的Web Server, 有些情况下,我们需要采用它而不是WAS自带的IBM H ...
在Install & Config 完 IBM FileNet之后,一个重要的事情就是check所安装的AE,PE,CE是否安装正确、能够正常启动。 这里,简要列出一些check方法。 1. 启动 CE DB .     与CE有关的一般有两个 DB。 一个 是 FNGCDDB用于记录 CE Domain的一些配置信息。 主要有以FNGCD为 prefix 的四个表(FNGCD, FNGCD_ADDON, FNGCD_CESERVERS, FNGCD_OSCBROWNERS)。 当你有需要想重新建立CE Domain的时候,最好将这四个表删掉,然后重新建。      再一个DB就是 ...
http://api.jquery.com/jQuery.support/ jQuery.support Returns: Object . Description: A collection of properties that represent the presence of different browser features or bugs. Primarily intended for jQuery's internal use; specific properties may be removed when they are no longer needed intern ...
本文摘自:http://lerluc.iteye.com/blog/560972 struts convention plugin to scan jar files for actions StrutsEclipseRESTSpringAnt i intended to pack my action classes in jar file and utilize the convention plugin to initialize them. i did it following this instruction. the plugin didn't recognize my ...
Global site tag (gtag.js) - Google Analytics