import java.io.*;
public class chk
{
String className;
String command,command1,command2;
public String getMsg(String fileName,File Path1)
{
String dir;
command = "tcc "+fileName;
String output = executeCommand(command,Path1);
if(output.compareTo("")==0)
output = "Compilation Successfull!!";
return output;
}
private String executeCommand(String command,File Path1)
{
StringBuffer output = new StringBuffer();
Process p;
try
{
p = Runtime.getRuntime().exec(command,null,Path1);
p.waitFor();
BufferedReader reader1 = new BufferedReader(new InputStreamReader(p.getErrorStream()));
BufferedReader reader2 = new BufferedReader(new InputStreamReader(p.getInputStream()));
String line = "";
while ((line = reader1.readLine())!= null)
{
output.append(line + "\n");
}
while ((line = reader2.readLine())!= null)
{
output.append(line + "\n");
}
} catch (Exception e)
{
e.printStackTrace();
}
return output.toString();
}
public static void main(String args[])throws IOException
{
String x;
File dir=new File("D:\\test");
chk ob = new chk();
x = ob.getMsg("hello.c",dir);
System.out.println("OUtput : "+x);
}
}
ERROR

I am trying to compile a C code from a java class. I am using Turbo C/C++ compiler and have also set its path i.e "C:/TC/bin" even my programs are compiling when i compile them directly from command prompt but when i am trying to compile it with a java file the following error message appears. HELP!!