`
文章列表
1.从www.bitdefender.com/files/KnowledgeBase/file/dlls.zip下载压缩包和并解压到任意位置 其中包含5个DLL文件: mfc100.dll   mfc100u.dll   msvcr100.dll   msvcp100.dll   msvcr100_clr0400.dll   2.用安全模式重新启动你的计算机 如何重启在安全模式: ——重新启动计算机; ——按“F8”键; ——选择“安全模式”; 注意:对于Windows 8,你可以按住Shift键而要关闭电源,点击重启选项。   3.打开C:\Windows\System ...
Windows远程管理(WinRM)是Windows Server 2003 R2, Windows Vista和Windows Server 2008中一种新式的方便远程管理的服务。WinRM是远程管理应用的“服务器”组成部分,并且WinRS(Windows远程Shell)是WinRM的“客户端”,它在远程管理WinRM服务器的计算机上运行。   打开服务 Windows Remote Management (WS-Management),设置启动   在dos中输入winrm id错误信息:拒绝访问   解决方法:右键点击powershell以管理员身份执行。  
1.从官方网站下载site-1.6.16.zip,网址:subclipse.tigris.org; 2.将解压出来的features与plugins,复制到任意目录:Genuitec\MyEclipse-8.6\myplugins\svn (myplugins\svn是自己创建的,方便管理),其他的*.XML不用拷贝;(删除org.tigris.subversion.subclipse.mylyn_3.0.0.jar) 3.在Genuitec\MyEclipse-8.6\dropins下新建文件svn.link, 内容为:path=D:\\Program Files\\Genuitec\\M ...
执行get-ADUser -filter * 获取所有的AD用户 如果此命令不能执行 PS C:\Users\mayh> import-module activedirectory 如果提示不能加载activedirectory模块 PS C:\Users\mayh> Restart-Service adws 如果提示没有adws服务,安装 安装后启动,然后导入activedirectory模块   执行: PS C:\Users\mayh> get-ADUser  -filter *
转自http://blog.csdn.net/hil2000/article/details/845994 一、如何将文档转成flash支持的swf文件实现在线播放?1.先用openOffice把ppt、word、excel、txt类型的文档转换成pdf2.用swftools将pdf转换成swf,然后利用FlexPaper插件实现在线播放预览。二、具体实现1.安装必备工具组件(1)安装openoffice,openoffice是开源免费的文字处理软件,它可以将office文档转成pdf文件(笔者安装到D:\Program Files),openOffice下载地址http://www.ope ...
http://www.cnblogs.com/xia520pi/category/346943.html

LINUX入门

http://lovesoo.org/linux-quick-start

路过拾遗

1、用IE浏览器AJAX提交缓存问题导致第二次提交时方法不执行 解决方法:在提交action后增加动态参数,如new Date()   2、文件下载弹出框 文件名为.action(提交请求action) HttpServletResponse response = ServletActionContext.getResponse(); response.reset();// 清空输出流   response.setHeader("Content-disposition",                        "attachment; fil ...

js身份证验证

    博客分类:
  • js
本文转载于(请务必注明作者出处):               http://www.blogjava.net/titanaly/archive/2011/08/25/357268.html   // 构造函数,变量为15位或者18位的身份证号码 function clsIDCard(CardNo) { this.Valid = false; this.ID15 = ''; this.ID18 = ''; this.Local = ''; if (CardNo != null) this.SetCardNo(CardNo); } ...

js验证邮箱、手机

    博客分类:
  • js
function checkemail(str){ //在JavaScript中,正则表达式只能使用"/"开头和结束,不能使用双引号 var Expression=/\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*/; var objExp=new RegExp(Expression); if(objExp.test(str)==true){ return true; }else{ return false; } } function checkMobile(){      var mobile=document.getEl ...
(1)接口是公开的,里面不能有私有的方法或变量,是用于让别人使用的,而抽象类是可以有私有方法或私有变量的。 (2)abstract class 在 Java 语言中表示的是一种继承关系,一个类只能使用一次继承关系。但是,一个类却可以实现多个interface,实现多重继承。接口还有标识(里面没有任何方法,如Remote接口)和数据共享(里面的变量全是常量)的作用。 (3)在abstract class 中可以有自己的数据成员,也可以有非abstarct的成员方法,而在interface中,只能够有静态的不能被修改的数据成员(也就是必须是 static final的,不过在 interface ...
每3秒刷新一次 1、在<head>标签中<meta http-equiv="refresh" content="3"/> 2、在jsp中<%response.setIntHeader("refresh",3)%> 3、setTimeout(window.location.reload(),3000);
需要的jar文件:jacob.jar public class Utils { //获取UUID public static String getUUid(){ UUID uuid = UUID.randomUUID(); return uuid.toString().replaceAll("-", "").toString(); } public static void printAlertMessage(String msg) { HttpServletResponse response = ServletActionCont ...
<interceptors> <interceptor name="loginInterceptor" class="com.mayh.struts.interceptor.LoginInterceptor"> </interceptor> <interceptor-stack name="default" > <interceptor-ref name="loginInterceptor"> </interceptor-re ...
1、Oracle8/8i/9i数据库(thin模式) Class.forName("oracle.jdbc.driver.OracleDriver").newInstance(); String url="jdbc:oracle:thin:@localhost:1521:orcl"; //orcl为数据库的SID String user="test"; String password="test"; Connection conn= DriverManag ...
Global site tag (gtag.js) - Google Analytics