
脚本语言
Benwei666
一个开发,一个创业者
展开
-
批处理安装文件
原文:http://blog.sina.com.cn/s/blog_5df32c0d0100bwru.html Inno setup 类型: Inno setup 是一款完全免费的安装程序封装工具,其功能和稳定性均可与商业封装工具媲美.例如 :迅雷 安装参数:转载 2011-09-10 23:39:17 · 1212 阅读 · 0 评论 -
批处理安装JDK等文件,这里只是写了一个JDK的,其他的按照相同原理写就可以了
@echo off title 批处理程序安装 color 0a cls echo. echo.批处理程序安装 欢迎使用 echo. echo.开始执行批处理... echo. echo.正在打开全部安装程序... echo. echo. echo.准备开始,“请一定按照要求的原创 2011-09-12 16:38:24 · 1243 阅读 · 0 评论 -
批处理配置JAVA环境变量
@echo off title JDK和Tomcat环境变量设置 color 0a set /p inputJH= [请输入你要设置的JDK的安装目录:] if /i "%inputJH%"=="" set inputJH=%Java_Home% echo 正在原创 2011-09-14 20:29:57 · 1795 阅读 · 0 评论 -
Gradle Build Setup Plugin
The Gradle Build Setup plugin can be used to bootstrap the process of creating a new Gradle build. It supports creating brand new projects of different types as well as converting existing builds (e.g原创 2014-07-20 21:49:56 · 3639 阅读 · 0 评论 -
Starting Jetty in Debug Mode With Gradle
You can add the Jetty plugin to your gradle build file. Then you are able to start Jetty with your application by running gradle jettyRun. If you want to be able to debug your application remotel转载 2014-07-19 16:07:43 · 3273 阅读 · 0 评论