摘要: 1.软件 tomcat7: http://tomcat.apache.org/eclipse: http://www.eclipse.org/downloads/mysql: http://www.mysql.com/ SQLyog: http://sqlyog.en.softonic.com... 阅读全文
posted @ 2015-08-10 15:03 SKeyC27 阅读(1978) 评论(0) 推荐(0) 编辑
摘要: 1 确认工程的统一编码。 例如UTF-8 , project->properties->text file encoding 选择 UTF-82 JSP统一编码。 打开JSP文件: 以下都是要关注的地方。response.setCharacterEncoding("UTF-8"); 3 编辑Prop... 阅读全文
posted @ 2015-07-17 09:39 SKeyC27 阅读(356) 评论(0) 推荐(0) 编辑
摘要: 1 抓包分析工具: fiddler下载地址:http://www.telerik.com/download/fiddler使用教程:http://jingyan.baidu.com/article/5d6edee221f0b399ebdeec7f.html2 文本编辑器: Ultraedit可以通过... 阅读全文
posted @ 2015-07-07 14:33 SKeyC27 阅读(140) 评论(0) 推荐(0) 编辑
摘要: first,下载eclipse-j2ee和 strust2:http://struts.apache.org/download.cgi可以考虑下载“Full Distribution”版本1 解压strust2,挑选需要的文件2 src根目录下新增文件struts.xml。这里要注意 struts ... 阅读全文
posted @ 2015-07-07 11:02 SKeyC27 阅读(849) 评论(0) 推荐(0) 编辑
摘要: ---恢复内容开始---使用C++ builder后,发现很容易出现Access Violation的问题形如:当一个运行期Access violation出现时,你的用户得到的错误信息类似于如下情况: Access violation at address in module Read o... 阅读全文
posted @ 2015-07-01 15:22 SKeyC27 阅读(1038) 评论(0) 推荐(0) 编辑
摘要: 文章主旨是使用C++实现对webbrowser或ie浏览器的页面,进行操作。本次已测试通过,模拟点击一个按钮。假设按钮在页面是这样显示的:1 头文件#include #include #include 2 获得IHTMLDocument2对象。 这个前面提过。可以翻越之前的文章。 如果是c++... 阅读全文
posted @ 2015-06-30 15:04 SKeyC27 阅读(459) 评论(0) 推荐(0) 编辑
摘要: 1ifeve.com并发编程网,一个垂直性技术网站,致力于促进并发编程的研究和传播,翻译外国优秀技术文章,发表原创文章 2blog.51cto.comWeb技术博客,较多技术问题总结与分享 3linux.cnLinux 相关技术网站 4*.apache.orgApache开源项目提供http... 阅读全文
posted @ 2015-06-16 15:11 SKeyC27 阅读(1017) 评论(0) 推荐(0) 编辑
摘要: 代码在C++ builder测试过。 1. 获取IE软件的句柄 如果想获取其他软件的webbrowser,可以在这部分先获取其他软件的句柄。 2. 获取IE软件浏览页的句柄 注意,这个可以用到获取其他软件内嵌的webbrowser句柄 。 3. 向IE发送WM_HTML_GETOBJECT消息获得对 阅读全文
posted @ 2015-05-11 15:20 SKeyC27 阅读(634) 评论(0) 推荐(0) 编辑
摘要: 方法1:replace在项目中需要进行Fragment的切换,一直都是用replace()方法来替换Fragment:123456789 public void switchContent(Fragment fragment) { if(mContent != fragment)... 阅读全文
posted @ 2014-12-11 17:42 SKeyC27 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 首先是FriendBeanpackage com.example.other;public class FriendBean{ private String FName = null; private String FImg = null; private int iID = -1... 阅读全文
posted @ 2014-12-09 18:55 SKeyC27 阅读(273) 评论(0) 推荐(0) 编辑