- 浏览: 284189 次
- 性别:
- 来自: 长春
最新评论
-
378433707:
解决了我的问题!
struts2.3中StrutsPrepareAndExecuteFilter影响文件上传 -
woadaia:
jar 要哪些子啊,能不能直接发我一份,qq 39430532 ...
java调用打印机 -
ray198471:
...
jusb.jar -
liuhonggang123:
比较好
java 二维码 -
814687491:
这个JAR包分享得不得!加油!
java 二维码
文章列表
1.不带request信息的
response.sendRedirect(gotoURL);
或者
return “redirect:/app/initBuss.do”;
2.带request信息
request.getSession().getServletContext().getRequestDispatcher("/app/initBuss.do") .forward(request, response);
return null;
vedio-js播放视频
- 博客分类:
- js
<link rel="stylesheet" type="text/css" href="ueditor/third-party/video-js/video-js.css">
<script type="text/javascript">document.createElement('video');
document.createElement('audio');
document.createElement('track'); </script> < ...
- 2015-12-15 16:46
- 浏览 1244
- 评论(0)
百度编辑器ueditor 上传图片路径
- 博客分类:
- js
修改ActionEnter类中的invoke()方法,将url路径前面加上basepath
com.baidu.ueditor.ActionEnter
jsp中播放flash
- 博客分类:
- js
<object height="300" width="400" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"> <param name="movie" value="jsp/player.swf" ...
不多说,上干货!
function reloadTree(){ var node = $('#dic_tree').tree('getSelected'); $('#dic_tree').tree('options').queryParams = {pid: node.id}; $('#dic_tree').tree('reload', node.target);}
逗号分隔id串列转行
- 博客分类:
- oracle
1.oracle数据库的
select wm_concat(a.name) from table1 a where a.id in (select substr(t.ca, instr(t.ca, ',', 1, c.lv) + 1, instr(t.ca, ',', 1, c.lv + 1) - (instr(t.ca, ',', 1, c.lv) + 1)) AS idsfrom (select ',' || ids|| ',' AS ca, length(ids|| ',') - nvl(lengt ...
请下载该模板。
1.打开pdm,找到菜单report,点击generate report
找到刚才解压后的模板rtp的文件夹,设置导出格式rtp及路径
点击ok即可
1.System32下
for %1 in (%windir%\System32\*.dll) do regsvr32.exe /s %1
2.SysWOW64下for %1 in (%windir%\SysWOW64\*.dll) do regsvr32.exe /s %1
jdk 发布 webservice
- 博客分类:
- java
本文为原创:
1.web.xml:配置ws发布的服务器IP或域名,以及servlet
<context-param> <param-name>host</param-name> <param-value>192.168.1.123</param-value> </context-param> <servlet> <description>This is the description of my J2EE component</description> ...
css body div 图片背景
- 博客分类:
- 综合
style=" background: url(resource/images/welcome.png) center top #eee; border: none;"
在MyEclpise8.0中,windows->Preferences->General在其右边的界面中,找到"Show heap status",并勾选上,然后确定即可;显示 GC
jquery操作checkbox
- 博客分类:
- js
1.设置选中
$('#eyetype1').prop("checked",true); 或 $('#eyetype2').prop('checked','checked');
$('div .panel-title').html('datagrid的title');
1.可编辑表格中 输入框里按回车要转到右侧相邻的单元格中:
捕获到e后将e的key设置为9,即TAB键
2.按回车后失去焦点
捕获到e后将e的key设置为27,即ESC键