上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 46 下一页
摘要: 转自:http://blog.csdn.net/guopengzhang/article/details/5557096(一)过滤器类编写。1、设置字符集编码方式: 编写过滤器类:实现接口javax.servlet.Filterpublic class CharacterEncodingFilter implements Filter { private String charset; public void destroy() { // TODO Auto-generated method stub } public void doFil... 阅读全文
posted @ 2013-06-12 19:32 horizon~~~ 阅读(483) 评论(0) 推荐(0) 编辑
摘要: 报错:java.io.IOException: 设备未就绪。 at java.io.WinNTFileSystem.canonicalize0(Native Method) at java.io.Win32FileSystem.canonicalize(Win32FileSystem.java:375) at java.io.File.getCanonicalPath(File.java:559) at org.apache.catalina.startup.HostConfig.deployDescriptor(HostConfig.java:620) at org.apache.catal 阅读全文
posted @ 2013-06-12 19:20 horizon~~~ 阅读(6577) 评论(0) 推荐(0) 编辑
摘要: 转自:http://blog.sina.com.cn/s/blog_616acf520100nosr.html一、Arguments该对象代表正在执行的函数和调用他的函数的参数。[function.]arguments[n]参数function :选项。当前正在执行的 Function 对象的名字。n :选项。要传递给 Function 对象的从0开始的参数值索引。说明:Arguments是进行函数调用时,除了指定的参数外,还另外创建的一个隐藏对象。Arguments是个类似数组但不是数组的对象,说他类似数组是因为其具备数组相同的访问性质及方式,能够由arguments[n]来访问对应的单个参 阅读全文
posted @ 2013-06-06 08:55 horizon~~~ 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 转自:http://www.jb51.net/article/29800.htmnew Date("2011-12-21")函数,在火狐下可以正常取得时间,在IE7下 却是 NaN。纠结老长时间,放弃了new date 然后再老外的论坛中找了一段段代码可以兼容所有浏览器的格式化日期代码: function NewDate(str) { str = str.split('-'); var date = new Date(); date.setUTCFullYear(str[0], str[1] - 1, str[2]); date.setUTCHours(0, 阅读全文
posted @ 2013-06-05 08:17 horizon~~~ 阅读(359) 评论(0) 推荐(0) 编辑
摘要: 转自:http://www.cnblogs.com/thomaskwan/archive/2012/05/27.html错误:two or more web modules defined in the configuration have the same context root(/项目名)。to start this server you will need to remove the duplicate(s) 产生原因: 因为tomcat为项目建立服务器的配置出现错误。错误的文件为D:\Test\Servers\Tomcat v5.5 Server at localhost-con.. 阅读全文
posted @ 2013-06-04 13:43 horizon~~~ 阅读(1719) 评论(0) 推荐(0) 编辑
摘要: 转自:http://www.cnwebshow.com/edu/article_64623.htmlTinyEditor有以下特点它使用Javascript编写,不依赖于其它类库 这是一个轻量级的编辑器,要调用的文件仅有8kb 它可以处理大多数的html格式化需求,并且内置的功能使得生成的标记尽量简洁 编辑器中用到的小图标使用了CSS Sprite技术,减少了http连接 在主流浏览器中测试通过 可个人或商业项目中使用,遵循creative commons license。下面来看如何使用:1. 在网页文件中引用TinyEditor提供的js文件和css文件;2. 在网页文件中添加编辑器所需要 阅读全文
posted @ 2013-06-03 16:45 horizon~~~ 阅读(1764) 评论(0) 推荐(0) 编辑
摘要: 转自:http://blog.csdn.net/yys79/article/details/5364416 vcastr确实是一个不错的播放器,以前用2.x版本,但是有些问题,比如没有视频文件会造成浏览器崩溃,内存占用过多的问题,但是vcastr3解决了这些问题。日前在项目开发当中用到了这个播放器,在自动播放设置上出了些问题,在此记录备案。 原因是客户不想在网页加载时就自动播放,按照配置说名,貌似很简单,isAutoPlay设置为false就可以了。但是我发现vcastr3会自动加载1秒的视频,为的是显示首帧的画面。几经周折,发现有个isLoadBegin属性。最后把isAutoPlay设置为 阅读全文
posted @ 2013-05-30 00:35 horizon~~~ 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 转自:http://space.itpub.net/23071790/viewspace-691870/** * byte数组转换成16进制字符串 * @param src * @return */ public static String bytesToHexString(byte[] src){ StringBuilder stringBuilder = new StringBuilder(); if (src == null || src.length <= 0) { return null; ... 阅读全文
posted @ 2013-05-29 08:51 horizon~~~ 阅读(2378) 评论(0) 推荐(0) 编辑
摘要: 转自:http://www.cnblogs.com/qingsong-do/archive/2011/11/29/2267244.html获取表: select table_name from user_tables; //当前用户的表 select table_name from all_tables; //所有用户的表 select table_name from dba_tables; //包括系统表select table_name from dba_tables where owner='用户名'user_tables:table_name,tablespace_na 阅读全文
posted @ 2013-05-27 22:42 horizon~~~ 阅读(11802) 评论(0) 推荐(0) 编辑
摘要: 选择出的信息结果:表名 说明select user_tab_comments.table_name as 表名,user_tab_comments.comments as 说明 from user_tab_comments选择出的信息结果:表名(备注)、列名、列标注、主键、外键、字段类型、长度、小数位数、是否允许空、默认值 select case when user_tab_comments.comments is null then a.table_name else a.table_name||'('||u... 阅读全文
posted @ 2013-05-27 00:58 horizon~~~ 阅读(2810) 评论(1) 推荐(1) 编辑
上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 46 下一页