the problem is, i get 100 Errors when trying to compile with JDK.
if anyone knows why it isnt compiling right please let me know.
the only thing i changed was the colors :S
ant -buildfile C:\Temp\hnhclient\build.xml -diagnostics -logfile
aghmed wrote:typical noobish mistake
you have closed "}" once too much.
open file with notepad++, you will see all
skychi wrote:hmm. i keep getting same error over and over, i can't seem to find this character.
<javac srcdir="src" destdir="build/classes" debug="on"
source="1.5" target="1.5" includeantruntime="no">
<javac srcdir="src" destdir="build/classes" debug="on"
source="1.5" target="1.5" includeantruntime="no"
encoding="UTF8">
boshaw wrote:skychi wrote:hmm. i keep getting same error over and over, i can't seem to find this character.
try
javac -encoding UTF8 files....
or if you're using the ant build.xml
find:
- Code: Select all
<javac srcdir="src" destdir="build/classes" debug="on"
source="1.5" target="1.5" includeantruntime="no">
and make it
- Code: Select all
<javac srcdir="src" destdir="build/classes" debug="on"
source="1.5" target="1.5" includeantruntime="no"
encoding="UTF8">
Users browsing this forum: Claude [Bot] and 0 guests