-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using drip for javac #64
Comments
This should be possible. You'd need to figure out the equivalent command line for javac using java. On Thu, Jul 11, 2013 at 9:37 AM, Steve Losh [email protected]
|
Yep, that's what I'm looking for but can't seem to find. It would be nice to have it in Drip's docs since a lot of people would probably find it useful. |
The best I can find is that there's a programmatic interface for javac, so maybe write a small java program that takes the program to compile as an argument and uses the programmatic interface? edit to add link to info on interface: http://docs.oracle.com/javase/7/docs/technotes/tools/windows/javac.html#proginterface |
Apologies in advance if this is a dumb/obvious observation, but my http://openjdk.java.net/groups/compiler/ |
Although the modern way to do it is creating a java main class that use the
@trptcolin I guess that the only reason why |
I'd like to use Drip to run
javac
commands (basically for checking the syntax of a file whenever I save it in Vim). I'm pretty surejavac ...
is just a wrapper around ajava
command so it should be possible to use Drip instead. Any idea how I might do that?The text was updated successfully, but these errors were encountered: