开发者社区> 问答> 正文

JAVA使用CMD指令操作注册表问题??报错

在Java程序中使用cmd指令新建注册表编译是没问题,但打包jar后,运行jar包注册表就没有新建的表也没有报错是为什么?

String key="HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run";
String name="LockService";//启动项名称
String value=System.getProperty("user.dir") + "\\hello.exe";//程序路径
String command="reg add "+key+" /v "+name+" /d "+value;
Runtime.getRuntime().exec(command);

展开
收起
爱吃鱼的程序员 2020-06-09 13:28:42 596 0
1 条回答
写回答
取消 提交回答
  • https://developer.aliyun.com/profile/5yerqm5bn5yqg?spm=a2c6h.12873639.0.0.6eae304abcjaIB

    打包之后,路径有一定的区别,你可以调试下

    <spanstyle="color:#333333;font-family:Arial;font-size:14px;line-height:26px;background-color:#FFFFFF;">jar包所放的位置是不一定,需要动态获取当前目录。

    <spanstyle="font-size:14px;line-height:26px;background-color:#FFFFFF;">试一下这个<spanstyle="font-family:Consolas,'CourierNew',Courier,mono,serif;font-size:12px;line-height:18px;background-color:#F8F8F8;">file.getAbsolutePath

    2020-06-09 13:28:59
    赞同 展开评论 打赏
问答分类:
问答地址:
相关产品:
问答排行榜
最热
最新

相关电子书

更多
Spring Cloud Alibaba - 重新定义 Java Cloud-Native 立即下载
The Reactive Cloud Native Arch 立即下载
JAVA开发手册1.5.0 立即下载