hi friends,
i am doin a project named online compiler.
the basic idea is to compile a program online.
i am well acquinted with core java but not with web technologies.
i know the basics of jsp n planning to do the project in jsp.
i know how to compile source inside another java code
example
import javax.tools.JavaCompiler;
import javax.tools.ToolProvider;
public class CompileHello {
public static void main(String[] args) {
JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
int result = compiler.run(null, null, null,"src/hello.java");
System.out.println("Compile result code = " + result);
}
}
the estimated time to complete the project is abt 1 month .
i need all ur guidance to properly guide me through or give me a through idea of how this thing could be done