Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Developing a java program to compile .java files

I am researching for a project that will involve my project to compile simple enough java files. From my research I have decided not to try and build my own compiler as this would just take too much time.

So does anyone know what would be the best compiler to implement in this project so that I would be able to compile java files that are submitted to the program?

like image 828
Hip Hip Array Avatar asked Apr 19 '12 16:04

Hip Hip Array


1 Answers

Why not use the built in Java compiler API ?

like image 181
Brian Agnew Avatar answered Sep 26 '22 00:09

Brian Agnew