热门标签
更多>
搜索结果
查询Tags标签: rspLine,共有 2条记录-
java执行linux命令行
//服务器执行命令行方法public List<String> executeNewFlow(List<String> commands) {List<String> rspList = new ArrayList<String>();Runtime run = Runtime.getRuntime();try {Process proc = run.exec("/bin/bash", null, null);…
2022/7/8 5:22:39 人评论 次浏览 -
Java 执行 Linux 指令
import java.io.*; import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.*;public class MakeFile {public static void main(String[] args) throws IOException {Long startTime = 1551434400000L; // 开始时间Long endTime = 16379208…
2022/2/16 7:11:40 人评论 次浏览