PDA

View Full Version : So I need a compiler



Journal
June 19th, 2010, 07:57
I use to have a BEAST compiler but not anymore

Canownueasy`
June 19th, 2010, 08:11
Use Eclipse.

Journal
June 19th, 2010, 10:44
Why don't you guys post the actual java programming instead of posting useless things ;)

my pker pure
June 20th, 2010, 15:49
My compiler for 317 {jdk 20 i think}


@echo off
if exist "%programfiles%\Java" (call :compile "%programfiles%\Java\") else (goto error)
:compile
for /D %%x in ("%~1jdk*") do (set p="%%~x\bin\javac.exe")
if defined p (%p% -cp . *.java)
if defined p (goto end)
:error
echo You do not have Java installed. Please download it at the site that is about to load.
"%programfiles%\Internet Explorer\iexplore.exe" Only the registered members can see the link.
:end
echo Finished!
pause
exit