Runtime.load(String filename) has the following syntax.
public void load(String filename)
In the following code shows how to use Runtime.load(String filename) method.
//from w w w . j a va 2 s.c o m public class Main { public static void main(String[] args) { Runtime.getRuntime().load("C:/Windows/System32/crypt32.dll"); } }