Images selection captcha in JAVA with difficulty management (image accuracy). Text in French only.
find . -name "*.java" -print | xargs javac -d bin
for /f %i in ('forfiles /s /m *.java /c "cmd /c echo @relpath"') do @echo %~i >> sources.txt
javac @sources.txt -d bin
You have to copy the resources from /src
into /bin
that the program can access to images :
rsync -avz --exclude '*.java' ./src/ ./bin/
xcopy .\src\* .\bin\ /S /I /C /Exclude:sources.txt
java -cp bin fr.upem.captcha.ui.MainUi
OR
If you want to run the software without doing all this stuff, you have to execute
the windows_startup.bat
or linux_startup.sh
file by double clicking on it or
by executing the following command:
Windows:
./windows_startup.bat
Linux:
./linux_startup.sh