小工具
文章平均质量分 61
NetMicrobe
这个作者很懒,什么都没留下…
展开
-
批量生成非动画bci图片的工具
批量生成非动画bci图片的工具摘要:BMP转换成BCI的批量处理工具。使用前设置一下BREW_AuthTool程序路径的环境变量。 用法: 将包含BMP的文件夹托拽到该脚本文件上执行。 生成的bci文件将放在该文件夹的bci/子目录中。 执行前保证BMP文件夹中没有 disc/ 和 bci/ 2个子目录。双击脚本可获得帮助信息正文: 脚本文件内容原创 2006-10-27 18:07:00 · 2038 阅读 · 0 评论 -
Save XML file to local system
Off course, this operation need user’s permission, but when I using xml_dom_obj.save(), nothing happened, even a permission requesting dialog.I donot know if it was blocked by my IE browser or th原创 2007-11-30 16:18:00 · 1347 阅读 · 0 评论 -
How to get a syntax-highlighting code text
vim provide a function to covert current code view to a html page. open your code file with gvim execute :set syntax=c for example to assign the highlight scheme. execute “Conver原创 2007-11-30 16:07:00 · 1057 阅读 · 0 评论 -
批处理:为同一目录下的文件添加前缀或后缀
------------------------------------prefix.bat------------------------------------@echo offremrem Add prefix(%2) to all files in specified directory(%1).rem FOR %%I in (%~1*) Do move "%%I" "%~1%~2%%原创 2007-06-01 21:13:00 · 3270 阅读 · 0 评论 -
在英文系统中查找Unicode文本文件中的中文信息
写的一个工具,用来查找Unicode文本中的中文字符。FindCnchar.javaimport java.io.*;/** * Application: FindCnchar * Author: Steven * Data: Monday, May 28, 2007 * Time: 15:05:42 * Purpose:Find Chinese Characters in text.原创 2007-05-30 22:59:00 · 1363 阅读 · 0 评论 -
创建文件填充存储空间
为在手机上测试内存相关的case时,生成一个消耗指定字节数的文件。FillingFile.javaimport java.io.*;/** * Application: FillingFile * Author: Steven * Data: April 17, 2007 * Purpose:create size-assigned file for fill memory on ph原创 2007-05-30 22:56:00 · 1205 阅读 · 0 评论 -
以十六进制形式显示文件内容
写的一个小工具,用来将文件的内容显示为十六进制格式的字符,就像UE中的Ctrl+H功能。Hextext.javaimport java.io.*;/** * Application: Hextext * Author: Steven * Data: April 18, 2007 * Purpose:Show files content in hexadecimal text. *原创 2007-05-30 22:53:00 · 3238 阅读 · 0 评论 -
用于J2ME的批处理工具
dejar.bat 从jar反编译出java源代码文件。@echo offremrem decompile the jarrem class files will be put in ./classrem source files will be put in ./dsrcremset JAD=jadset JAR=jarset CLSDIR=./classset SRCDIR=./ds原创 2007-07-11 23:36:00 · 1317 阅读 · 0 评论 -
去除C++注释的脚本
去除CPP注释.vbs 2006/11/16 Yi Wang Ver3.0.0 能够区分""中的注释符号。除了多行字符串: "a multi-line / String literal signals its / continuation with a backslash." 用法: 将需要处理的文件托拽到该脚本上。 注意: 使用脚本之前请先备份源代码文件!!!原创 2006-11-16 17:42:00 · 2256 阅读 · 0 评论 -
JMeter使用
1. TIPs 1.1. JMeter不执行网页中JavaScript 2. How-To 2.1. 对单个网页进行性能测试 步骤[1] 保存项目为jmx文件步骤[2] 创建Thread Group选中 Test Plan ,右键菜单Add >> Threads(Users) >> Th原创 2013-02-16 10:23:56 · 1611 阅读 · 0 评论