The following is frequently used ant script, compile some java source codes with a libary path, then copy all non-java files to compiled folder: <property name="src.dir" value="${basedir}/src" /> <property name="src.class…
1.Java调用shell  Java语言以其跨平台性和简易性而著称,在Java里面的lang包里(java.lang.Runtime)提供了一个允许Java程序与该程序所运行的环境交互的接口,这就是Runtime类,在Runtime类里提供了获取当前运行环境的接口.其中的exec函数返回一个执行shell命令的子进程.exec函数的具体实现形式有以下几种:public Process exec(String command) throws IOExceptionpublic Process e…
pom.xml jar 包支持 <dependency> <groupId>com.jcraft</groupId> <artifactId>jsch</artifactId> <version>0.1.53</version> </dependency> 代码: package com.spring.bean.annotation; import java.io.BufferedReader; import…
使用Runtime.exec()运行windwos dos或linux shell命令,按实际情况具体测试     实例代码: package com.bookoo.test.command; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.IOException; import java.io.InputStreamReader; import java.io.OutputStreamWr…
Java文件操作API功能与Windows DOS命令和Linux Shell 命令类比: Unix/Linux (Bash) Windows(MS-DOS) Java 进入目录 cd cd - 创建目录 mkdir md mkdir( ) 当前目录 pwd cd getPath( ) 展示目录 ls dir list( ) 移除目录 rm del deleteOnExit( ) 打印文件 lp print listFiles( ) 创建文件 touch - new File( ) 复制文件 c…
转载自:http://eksliang.iteye.com/blog/2105862 Java通过SSH2协议执行远程Shell脚本(ganymed-ssh2-build210.jar) 使用步骤如下: 一.导ganymed-ssh2-build210.jar包 <!-- https://mvnrepository.com/artifact/ch.ethz.ganymed/ganymed-ssh2 --> <dependency> <groupId>ch.ethz.ga…
java classpath批量设置shell脚本   注意:linux bash jar文件之间的分隔符是':'    export JAR_HOME=path to directory which includes jars    for f in $JAR_HOME/*.jar  do  JAR_CLASSPATH=$JAR_CLASSPATH:$f  done  export JAR_CLASSPATH    #the next line will print the JAR_CLASS…
为什么执行脚本要使用./ +脚本名来执行脚本理解:因为如果直接使用脚本名,那么linux 系统会去path 路径查找如去/bin usr/bin 等查找,这个时候会找不到这个脚本名字,就会报错.使用./ 这个时候就相当于告诉系统要在当前路径底下查找. 通过简单例子来分析for 循环的使用 #!/bin/bashfor skill in Ada Coffe Action Javado echo "I am good at ${skill}Script"done 从实际使用过程发现for…
paip.注册java程序为LINUX系统服务的总结. ////////////////实现开机启动. 标准方法是按照/etc/init.d/下面的文件,修改一下:然后chkconfig xxx on 即可.比较麻烦..放弃.. 可以简单实现开机自启动就是了.. 2.在/etc/rc.local里面写 /bin/bash  /xxxx.sh   ////////////编写服务脚本.运行..locationServc.sh start/stop/restart/? 运行sh,提示权限不不够,wi…
导读 和Java.PHP等语言不一样,linux shell有一套自己的流程控制语句,其中包括条件语句(if),循环语句(for,while),选择语句(case).下面我将通过例子介绍下,各个语句使用方法. 一.shell条件语句(if用法) if语句结构[if/then/elif/else/fi] if 条件测试语句 then action [elif 条件 action else action ] fi shell命令,可以按照分号分割,也可以按照换行符分割.如果想一行写入多个命令,可以通…