Chen Jian

修改Tomcat的运行内存

在catalina.bat中加上红色那行 set _EXECJAVA=%_RUNJAVA% set MAINCLASS=org.apache.catalina.startup.Bootstrap set ACTION=start set SECURITY_POLICY_FILE= set DEBUG_OPTS= set JPDA= set JAVA_OPTS= -Xms512M -Xmx1024M ===JSP中查看当前的内存使用状况= Runtime lRuntime = Runtime.getRuntime(); out.println("*** BEGIN MEMORY STATISTICS ***"); out.println("Free  Memory: "+lRuntime.freeMemory()/1024/1024+"M"); out.println("Max   Memory: "+lRuntime.maxMemory()/1024/1024+"M"); out.println("Total Memory: "+lRuntime.totalMemory()/1024/1024+"M"); out.println("Available Processors : "+lRuntime.availableProcessors()+""); out.println("*** END MEMORY STATISTICS ***");

dos下获取当前系统时间的办法

    dos下的系统时间和日期已经被定义为环境变量。如果要看的话,可以简单地 执行 echo %date% %time% 即可 还可以将日期、时间格式化后再输出,如: "%date:~0,10% "              从当前系统日期中第"0"位开始取出"10"位 "%time:~0,2% "              从当前系统时间中第"0"位开始取出"2"位

FTP的传输方式:ASCII v.s. Binary

摘自Serv-U网站: When using ASCII mode, files are actually changed, depending on the server. ASCII mode is used to translate ASCII text files between the server and client. For example when uploading to a UNIX server [CR][LF] (carriage return line feed) is converted to just [LF]. And when downloading [LF] is converted to [CR][LF]. This is …

FTP的传输方式:ASCII v.s. Binary Read More »

tomcat-sever.xml中跟性能有关的配置

<Connector>标签下: acceptCount The maximum queue length for incoming connection requests when all possible request processing threads are in use. Any requests received when the queue is full will be refused. The default value is 10.     建议:Don’t set too high, this sets the number of pending requests awaiting processing.  In my opinion it is better …

tomcat-sever.xml中跟性能有关的配置 Read More »

推荐一个工具:WhoLockMe,可以在WINDOWS中找到哪个进程锁住了当前的文件

转自华军软件园:      当你在删除硬盘中许多无用文件时,经常会遇到这样的提示:“你的文件正在被另一个程序使用而无法删除”。 令人十分头痛。现在只要你安装了WhoLockMe,你就可以可以在右键菜单中找到“谁锁住了我”的选项,通过点击它,就可以看到谁在调用文件了,按下“结束进程”就可以将调用文件的程序关掉,然后你就可以轻松的删除任何不再需要的文件了。

cidaemon – cidaemon.exe – 进程信息

cidaemon – cidaemon.exe – 进程信息 进程文件: cidaemon or cidaemon.exe 进程名称: Microsoft Indexing Service 描述: 在后台运行的Windows索引服务,用于帮助你搜索文件在下次变得更快。 常见错误: N/A 是否为系统进程: 否 如果需要关闭 可以在控制面板——管理工具——服务——Indexing Service ——点右键关闭

基于HTML的WORD文档是不可靠的

   因为它虽然以*.doc结尾,虽然可以用WORD查看,但它本质仍是一个html。   因此,这个文档里的图片其实是独立于文档本身的文件。如果你把这个文档发给别人,别人可能就看到文档里的图片了。   那该怎么办? 全选 –> Ctrl + C –>新建一个WORD文档并Ctrl + V