`
文章列表

mongoDB 使用手册

1、基本操作 db.AddUser(username,password) 添加用户 db.auth(usrename,password) 设置数据库连接验证 db.cloneDataBase(fromhost) 从目标服务器克隆一个数据库 db.commandHelp(name) returns the help for the command db.copyDatabase(fromdb,todb,fromhost) 复制数据库fromdb---源数据库名称,todb---目标数据库名称,fromhost---源数据库服务器地址 db.createCollection(name,{size:3 ...
jQuery获取Radio选择的Value值: 1. $("input[name='radio_name'][checked]").val();  //选择被选中Radio的Value值 2. $("#text_id").focus(function(){//code...});  //事件 当对象text_id获取焦点时触发 3. $("#text_id").blur(function(){//code...});  //事件 当对象text_id失去焦点时触发 4. $("#text_id").select() ...
1.打开源码编辑器 2.使用快捷键Ctrl+f 3.在Find输入框中输入:^\s*\n 3.Replace With输入框的值为空 4.在【Options】选中的"Regular expressions" 5.点击【Replace All】按钮。 6.OK!
  转自http://www.nshen.net/sitelog/2011/08/03/git-note.html     笔记《版本控制之道--使用Git》 我认为每个学过Git的人都应该做过类似这种笔记,因为Git命令太多看着看着就把前边看过的忘了,之前我也看过Git,但是一直没用,现在一看几乎没有印象了,所以这次我要把我看到的命令记下来给我自己备忘。 Git已经是最流行的版本控制系统了,网上相关的免费学习资源很多,我见过的中文书籍就有: Git Community Book 中文版 Pro Git 中文版 Git Magic 中文版 但我是买的一本纸质书叫做《版 ...
首先 需要下载jar包 bcprov-jdk15-145.jar 实体类 package com.hongan.lh.cert; import java.security.KeyPair; import java.security.cert.X509Certificate; public class CertInfo { private KeyPair key; private X509Certificate cert; public KeyPair getKey() {   return key; } public void setKey(KeyPair ke ...

Chrome 详细设置

在 SwitchySharp 选项中,选择导入导出分页卡,导入此设置 http://goagent.googlecode.com/files/SwitchyOptions.bak 在 SwitchSharp 选项中,选择切换规则选项卡,点击立即更新列表来获得最新的自动规则列表。

Firefox 同步 密钥

您的 Firefox 同步 密钥 3-8czuq-484ae-h5wfj-ccsjp-a5ice 此密钥是用于解码您的 Firefox 同步 帐户中的数据。您每次在新的计算机或设备配置 Firefox 同步 时需要输入密钥。

Log4j配置

log4j.rootLogger=debug, stdout log4j.appender.stdout=org.apache.log4j.ConsoleAppender log4j.appender.stdout.layout=org.apache.log4j.PatternLayout log4j.appender.stdout.layout.ConversionPattern=[S] %-5p %C.%M(%F:%L)%m %n log4j.rootLogger=debug, stdout log4j.appender.stdout=org.apac ...
import java.text.*; import java.util.*; public class DecimalFormatSample { public static void main(String args[]) { DecimalFormat myformat1 = new DecimalFormat("###,###.0000");//使用系统默认的格式 System.out.println(myformat1.format(111111123456.12)); Locale.setDefault(Locale.U ...
环境变量:   CATALINA_HOME D:\Program Files\Tomcat CATALINA_BASE D:\Program Files\Tomcat
如何配置IIS运行 ASPX 最近在做 .ASPX 搞了好一阵子,才弄懂这个东西,和大家分享……     欢迎讨论 一、先注册asp.net组件: (asp.NET 组件即:.Net Framework )   开始->运行->cmd->执行命令: C:\windows\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe -i  (你的.net组件位置) [ 上面这个地址是.NetFramework 自动安装默认的位置~ ] 二、接下来还要在WEB服务扩展启用ASP.NET服务:   IIS->本地计算机->WEB服务扩展->A ...
applicationContext.xml <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tx="http://www.springframework.org/schema/tx" xmlns: ...
今天项目中遇到hibernate in查询结果集为空的问题. String searchModules = "select m from Module m where m.id in (?)"; return find(searchModules, temp.keySet()); temp是个map 这段执行后抛出异常. 修改后 Object [] objects = temp.keySet().toArray(); StringBuffer ids = new StringBuffer(); for (Object object : object ...
/** * 得到几天前的时间 * * @param d * @param day * @return */ public static Date getDateBefore(Date d, int day) { Calendar now = Calendar.getInstance(); now.setTime(d); now.set(Calendar.DATE, now.get(Calendar.DATE) - day); return now.getTime(); } /** * 得到几天后的时间 ...
com.microsoft.sqlserver.jdbc.SQLServerException: 此查询使用的不是 ANSI 外部联接运算符("*=" 或 "=*")。若要不进行修改即运行此查询,请使用存储过程 sp_dbcmptlevel 将当前数据库的兼容级别设置为 80 或更低。极力建议使用 ANSI 外部联接运算符(LEFT OUTER JOIN、RIGHT OUTER JOIN)重写此查询。在将来的 SQL Server 版本中,即使在向后兼容模式下,也不支持非 ANSI 联接运算符。 EXEC sp_dbcmptlevel '库名', ' ...
Global site tag (gtag.js) - Google Analytics