LinuxでJavaプログラムを介してsudoコマンドを実行したいのですが、パスワードを要求されます。しかし、私はパスワードなしでprogを実行したいので、教えてください。私のプログラムは
public class JavaCommandProg {
public static void main(String args[]) throws IOException, InterruptedException {
String command="sudo cat /etc/sudoers";
Process myProcess =null;
try {
Runtime runtime=Runtime.getRuntime();
File file=new File("/home/users/admin/temp");
myProcess = runtime.exec(command,null,file);
myProcess.waitFor();
InputStreamReader myIStreamReader = new InputStreamReader(myProcess.getInputStream());
BufferedReader br=new BufferedReader(myIStreamReader);
String line;
while((line=br.readLine())!=null){
System.out.println(line);
}
} catch (IOException anIOException) {
System.out.println(anIOException);
}
}
}
Compling like: javac JavaCommandProg.java
and : java JavaCommandProg