`
文章列表
  alert(new   Date(str).toLocaleString())   转化为:2010年3月9日 20:33:11
  在Eclipse/MyEclipse中打开可视化编辑窗口,比如JSP的编辑工具,可能会弹出一个警告窗口,信息如下: The Linux WYSIWYG design panel is still under development. To access an experimental version of this design panel restart with the commandline argument -Dlinux.experimental=true 解决办法: $ sudo gedit /usr/java/eclipse/eclipse.ini //编辑ecl ...
如果出现flash 乱码现象,可以用以下两条命令解决: sudo cp /etc/fonts/conf.d/49-sansserif.conf /etc/fonts/conf.d/49-sansserif.conf.bak sudo rm /etc/fonts/conf.d/49-sansserif.conf
以root用户编辑 /etc/mysql/my.cnf  文件如下: /////////////////////////////////////////////////////   # # The MySQL database server configuration file. # # You can copy this to one of: # - "/etc/mysql/my.cnf" to set global options, # - "~/.my.cnf" to set user-specific options. # # ...
ubuntu8.10中默认安装了scim,但是这时的scim只支持英文,没有中文输入法。这时,如果是习惯拼音输入的用户,只需要安装拼音输入法就行了。命令如下: sudo apt-get install scim-pinyin 如果喜欢用skim前端的话,还可以加上skim-scim-pinyin 经过安装 ,就可以用拼音输入法了(当然了,你要用scim-setup设置、激活智能拼音。然后重启ubuntu linux)。 五笔只要安装上中文码表就可以了。 如果你执行 sudo apt-get install scim-* ,就会显示出可以安装的跟scim相关的多数安装包。 当然要在系统 ...
解决方法:   1、改表法。可能是你的帐号不允许从远程登陆,只能在localhost。这个时候只要在 localhost的那台电脑,登入MySQL 后,更改 "MySQL " 数据库 里的 "user" 表里的 "host" 项,从"localhost"改 ...
# mysql -uroot -p Enter password: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO) 使用网上介绍的方法修改root用户的密码: # mysqladmin -uroot -p password 'newpassword' Enter password: mysqladmin: connect to server at 'localhost' failed error: 'Access denied for user 'root'@'lo ...
var lastDivId; function showContentDiv(cid) {        var objcurr=document.getElementById(cid);     var objlast=document.getElementById(lastDivId);     if(objlast!=null)     {            ///当前选项等于上次选项时         if(objlast==objcurr&&objlast.style.display=="block")         { ...
<?xml version="1.0" encoding="UTF-8"?> <web-app version="2.3" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java. ...
  <!-- spring配置 --> <listener> <listener-class> org.springframework.web.context.ContextLoaderListener </listener-class> </listener> <context-param> <param-name>contextConfigLocation</param-name> ...
安装过程注意要点。 1.默认请选择英文版 。 2.服务器分区方案 /boot : 200MB (主分区) / :10GB 装系统文件 (主分区) /swap :2GB /usr :10GB 装软件 /home :30GB 放一些软件,日杂备份,重要数据备份 /var :70GB 放WEB文件 和数据库文件 3.不升级程 序,和安装隐私文档。 4.安装完成需要刷新下载列表:sudo apt-get update ...
1.在ASP中,conn.open xxxx,1,3是什么意思?? 答:rs.open sql,conn,a,b A: ADOPENFORWARDONLY(=0) 只读,且当前数据记录只能向下移动 ADOPENSTATIC(=3) 只读,当前数据记录可自由移动 ADOPENKEYSET(=1) 可读写,当前数据记录可自由移动 ADOPENDYNAMIC(=2) 可读写,当前数据记录可自由移动,可看到新增记录 B: ADLOCKREADONLY(=1) 默认值,用来打开只读记录 ADLOCKPESSIMISTIC(=2) 悲观锁定 ADLOCKOPTIMISTIC(=3) ...
  Runtime.getRuntime().gc(); long start = Runtime.getRuntime().freeMemory(); Object object=(Object)request.getSession().getAttribute("object"); Runtime.getRuntime().gc(); long end = Runtime.getRuntime().freeMemory(); long differ ...
在ubuntu linux 不能把文字直接复制到javaeye的编辑器,唯有把资料拷下来,在windows下发文章吧   首先下载 rarlinux-3.9.2.tar.gz , 当然还有其他的版本,我接下来就用这个文件名来作参考吧;   如果用firefox下载这个文件的话,默认下载到home/username/下载  这个目录下,这个时间我们就要打终端; 1)用命令: cd 下载            //进入文件的所在目录,这个跟dos一样用法,cd与下载之间是有空格的 2)用命令:tar zxfv rarlinux-3.9.2.tar.gz        //这个是用来解压 ...
尽管那需要用长串的、沉闷的不同分支代码来应付不同浏览器的日子已经过去,偶尔还是有必要做一些简单的区分和目标检测来确保某块代码能在用户的机器上正常运行。在这篇文章中,作者介绍了7个在IE和firefox中不同的JavaScript句法   1. CSS "float" 值   访问一个给定CSS 值的最基本句法是:object.style.property,使用驼峰写法来替换有连接符的值,例如,访问某个ID为"header"的   的 background-color值,我们使用如下句法:   document.getElementById(& ...
Global site tag (gtag.js) - Google Analytics