`
文章列表
 管理员账号无法执行show dbs 、show collections{ "_id" : ObjectId("52a82bb26cea234c4deb06fd"), "user" : "admin", "pwd" : "7c67ef13bbd4cae106d959320af3f704", "roles" : [ "userAdminAnyDatabase" ] } db.system.users.findOne( ...
兼容IE10 FIREFOX CHROME 效果见下图 tcs.html <html> <meta http-equiv="Content-Type" content="text/html; charset=GB2312" /> <head> <title>贪吃蛇</title> <style> .desktop{ background-color:gray; border:1px ...
效果图片,兼容IE FireFox Chrome progressbar.html <html> <meta http-equiv="Content-Type" content="text/html; charset=GB2312" /> <head> <title>bar</title> <style> .barWidth{ width:400px; } .bar{ backgroun ...
/****************************************************************************************************************************** * @ author jdkleo * @ date 2013/2/27 JQuery SelKeys USAGE: jQuery.selkeys.enter(jQuery("#selcon")); jQuery.selkeys.focus(jQuery("#selcon ...
大家知道Tomcat之流对静态资源可以实现断点续传支持,但是如果是一个被控制的流,如有权限控制,或下载地址仅是个代理的时候,这时候需要自己实现断点续传的支持,小弟不才,这里提供基本断点续传[a-,-b,a-b]的简单实现,经验证,可支持迅雷7和火狐的多次断点续传。现贴出代码,大家共同分享:   Servlet import java.io.BufferedOutputStream; import java.io.File; import java.io.IOException; import java.io.RandomAccessFile; import java.io.Unsu ...
困绕一天的问题,终于解决了,解决方案简单到不能再简单。 背景:xml配置 以及 class配置 问题:getBean获取service时无法自动注入内部的dao 解决:将SpringContextUtil的注入配置从xml配置中移到class配置。 原因:getBean所在的上下文在xml配置中,而dao所在的配置在class配置中,getBean的缩主类SpringContextUtil工具类的注入是在xml中配置的,所以etBean所在的上下文在xml配置中,自然读不到dao,那为何能读到service呢,因为xml和class都配置了scan扫描包路径为"com.waxberry ...
冒泡排序: public class SortTest { public static void main(String[] args) { int[] a = {345,7,32,5,4,-1,3,12,23,110,45645,321,456,78,-1,78,78,32,444,345}; show(a); bubbleSort(a); show(a); } private static void bubbleSort(int[] a) { for(int i=0;i<a.length-1;i++){ for(int j=0 ...
public static void main(String[] args) { for(int i=1,j=1;i<=9;j++){ System.out.print(j+"*"+i+"="+i*j+"\t"); if (j==i){ i++; j=0; System.out.println(); } } } ...
<html> <body> <div id="a"></div> <div id="b"></div> <script> var point = function(id,msg,init){ if (typeof(init)=='undefined'){ init=3; } this.id=id; this.len= init; var show = function(p){ documen ...
Global site tag (gtag.js) - Google Analytics