2 Star 0 Fork 0

gfjava/ShiYongGongJu

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
YingYongDuoKai.java 1.84 KB
一键复制 编辑 原始数据 按行查看 历史
gfjava 提交于 2023-05-01 23:26 . 1
package abc;
import java.io.*;
import java.util.*;
import java.util.Scanner;
import java.awt.*;
public class YingYongDuoKai{
public static void main(String[] main){
try{
String s = "";
int num = 0;
System.out.println("请输入您的应用运行文件(.exe)的路径:");
System.out.println("输入的时候一定要加上引号,否则会被识别为打开文件夹。");
System.out.println("只支持微信等没有“启动.exe“的应用");
Scanner path = new Scanner(System.in);
s = path.nextLine();
System.out.println("请输入您要打开的应用数量:");
Scanner num1 = new Scanner(System.in);
num =Integer.parseInt(num1.nextLine());
Runtime runtime = Runtime.getRuntime();
//System.out.println(baseCmd);
runtime.exec("cmd /c " + open(s,num));
runtime.exit(0);
//startProgram(num);
}catch(Exception e){
e.printStackTrace();
}
}
/**
*方法1
* 启动应用程序
*
*/
public static void startProgram(int num) {
String programPath="E:\\微信\\WeChat\\WeChat.exe";
try {
for(int i=1;i<=num;i++){
Desktop.getDesktop().open(new File(programPath));
}
} catch (Exception e) {
e.printStackTrace();
}
}
/**
*方法2
*命令字符串拼接
*/
public static String open(String s,int num) throws IOException{
String s1 = "@echo off"+'\n';
String s2 = "exit";
String s3 = "";
s3 = "&start "+'\"'+'\"'+' '+'\"'+s+'\"';
String s4 = "";
//System.out.println(s1);
for(int i=0;i<num;i++){
s4+=s3+'\n';
}
return(s1+s4+s2);
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/gfjava/shi-yong-gong-ju.git
git@gitee.com:gfjava/shi-yong-gong-ju.git
gfjava
shi-yong-gong-ju
ShiYongGongJu
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385