I am new to Java and I have downloaded the Java SE 6 SDK. I have finished programming my EXAMPLE.java program but I run javac.exe, it doesn't work. :(It opens, but after a second the command prompt window closes. I try many times but still does not work. Then I try to drag the .java file to the...
@echo off
pushd %CD%
cls
set jpath=C:\Program Files\Java\jdk1.6.0_07\bin
cd /d %jpath%
if EXIST "javac.exe" goto FOUND
if NOT EXIST "javac.exe" goto NOTFOUND
:NOTFOUND
cls
echo JAVAC.EXE FILE NOT FOUND
pause
goto END
:FOUND
echo JAVAC.EXE FILE FOUND
echo.
pause
popd
:END
:?:
I have written a...
Hi Guest we just wanted to alert you to a major change in the forum. We will no longer be allowing the posting of outgoing links. Please use the attachment feature to attach media to your posts.