`
文章列表

将博客搬至CSDN

将博客搬至CSDN 我的CSDN博客地址: http://blog.csdn.net/fgh2009
time有计时作用,dd用于复制,从if读出,写到of。if=/dev/zero不产生IO,因此可以用来测试纯写速度。同理of=/dev/null不产生IO,可以用来测试纯读速度。bs是每次读或写的大小,即一个块的大小,count是读写块的数量。 1.测/目录所在磁盘的纯写速度: time dd if=/dev/zero bs=1024 count=1000000 of=/1Gb.file 2.测/目录所在磁盘的纯读速度: dd if=/kvm/ftp/other/1Gb.file bs=64k |dd of=/dev/null 3.测读写速度: dd if=/vat/test of=/or ...
注:图片名称(tabicons.png)每个小图标width:18px;height:18px 左上角的坐标为(-0px;-0px) 第一个表示图片的宽 第二个表示图标图片的高 例如第一个对号的坐标为(-0px;-0px;)第二个加号的图标为(-20px;-0px;)中间依次加20个像素 截取小图标样式 .icon-config{background-position: -20px -100px;} 使用方式: <div id="config" data-options="iconCls:'ico ...
转载:http://blog.csdn.net/easyyoung/article/details/6860338 在写java程序时不可避免要获取文件的路径...总结一下,遗漏的随时补上 1.可以在servlet的init方法里 String path = getServletContext().getRealPath("/"); 这将获取web项目的全路径 例如 :E:\eclipseM9\workspace\tree\ tree是我web项目的根目录 2.你也可以随时在任意的class里调用 this.getClass().getClassLoa ...
PANIC: Could not open: C:\Documents and Settings\Administrator\PANIC: Could not open:my_avd.ini<wbr></wbr> 原来如果你采用绝对路径定位的话,也就是说在环境变量里面把路径写死了,比如你装d:\android-sdk时,你在path里面配成d:\android-sdk;由于android默认path为C:\Documents and Settings\Administrator\,所以会出现上述情况。<wbr></wbr>故问题原因找到,解决 ...
1、修改数据库密码 >mysql -u root -pEnter password: ******mysql> use mysql;mysql> update user set password=password('new_password') where user='root'; 回显Query OK, 0 rows affected (0.00 sec)
1、使用JPEGImageEncoder,eclipse报错如下:Access restriction: The type JPEGImageEncoder is not accessible due to restriction on required library C:\Java\jre1.6.0_07\lib\rt.jar Access restriction: The type JPEGCodec is not accessible due to restriction on required library C:\Java\jre1.6.0_07\lib\rt.jar Acces ...
转载:http://www.blogjava.net/renyangok/archive/2007/01/12/93537.html java处理url中的特殊字符(如&,%...) URL(Uniform Resoure Locator,统一资源定位器)是Internet中对资源进行统一定位和管理的标志。一个完整的URL包括如下内容:1. 应用协议名称,包括http,ftp,file等标志
1、分页工具栏显示NaN 如果在IE9标准模式下,EasyUI的dataGrid显示的时候有问题,显示记录数为NaN,把easyui中的Demo里的html加上<!DOCTYPE HTML>, 也会同样出现NaN的问题。 总结,EasyUi对Html5或IE9标准模式不兼容。启用兼容模式可以解决 2、easyui禁用combobox $(
1、新建WeiXinServlet.java package com.fgh.servlet; import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; /** * 微信servlet * ...
1、在spring项目中页面到action乱码 解决办法: 在web.xml中配置一个编码过滤器<filter> <filter-name>encodingFilter</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> <init-param> <param-name>encoding</ ...
get和load方式是根据id取得一个记录下边详细说一下get和load的不同,因为有些时候为了对比也会把find加进来。1.从返回结果上对比:load方式检索不到的话会抛出org.hibernate.ObjectNotFoundException异常get方法检索不到的话会返回null2.从检 ...
get和load方式是根据id取得一个记录 下边详细说一下get和load的不同,因为有些时候为了对比也会把find加进来。 1.从返回结果上对比: load方式检索不到的话会抛出org.hibernate.ObjectNotFoundException异常 get方法检索不到的话会返回null 2.从检索执行机制上对比: get方法和find方法都是直接从数据库中检索 而load方法的执行则比较复杂首先查找session的persistent Context中是否有缓存,如果有则直接返回 如果没有则判断是否是lazy,如果不是直接访问数据库检索,查到记录返回,查不到抛出异常 如果是laz ...
1、SpringAOP报错: warning no match for this type name: com.mybatis.test.SpringMybatisTest [Xlint:invalidAbsoluteTypeName] 。。。 Caused by: java.lang.IllegalArgumentException: warning no match for this type name: com.mybatis.test.SpringMybatisTest [Xlint:invalidAbsoluteTypeName] 解决办法: @Before(value = &qu ...
在前一天的学习中我们知道、了解并掌握了Web Server结合App Server是怎么样的一种架构,并且亲手通过Apache的Http Server与Tomcat6进行了整合的实验。 这样的架构的好处在于: ü   减轻App Server端的压力,用Web Server来分压,即Web Server只负责处理静态HTML内容,而App Server专职负责处理Java请求,这对系统的performance是一个极大的提升。 ü   安全,Web Server端没有任何Java源代码包括编译后的东西,对Internet开放的只有Web Server,因此黑客就算通过80端口攻入了我们的Web ...
Global site tag (gtag.js) - Google Analytics