【发布时间】:2014-03-28 10:56:25
【问题描述】:
我正在尝试在需要远程调试的安全系统上工作。所以我正在搜索的是一种执行字符串中的代码的方法,如下例所示,但使用 java。
try {
String Code = "rundll32 powrprof.dll, SetSuspendState";// the code we need to excecute
Runtime.getRuntime().exec(Code);
} catch (IOException e) {
}
【问题讨论】:
-
我原以为在字符串中执行任何旧代码与安全系统相反...
标签: java