OK, what's wrong? Please a little help Thanks, Rick

GroG

10 years 6 months ago

Do you have Java 1.7 ? 

An easy way to tell is in a cmd shell type java -version 

This is what I get

ricoldw

10 years 6 months ago

I removed all versions of Java

Then I installed Java 1.7.40 (64 bit)

Restarted the computer and got THIS!!!!

 

You did not remove 1.6.0.18 version of Java .. says so right there ;)

The way the operating system works is that it scans through your PATH enironment variable - which is a list of directories - to find the first "java.exe" to execute...

Well, somehwere on your system the java.exe version 1.6.0_18.  is before 1.7 

So you have 2 options .. really remove all Java 1.6 or change your PATH environment variable to have the 1.7 path first  (see video in my other comment)

GroG

10 years 6 months ago

Your path probably goes to Java 1.6 first - 

Look at this video - it shows him adding the jdk 1.7 onto the path... I would put it at the beginning and not the end like he did.

ricoldw

10 years 6 months ago

Ok,  JAVA 1.7.40 (64 bit)  goes standard to the directory c:\Program FilesjJava\jre7 and the older JAVA version was placed in c:\Program Files (x86)\Java\jre6

 

Thanx for giving advice!!!

 

Rick

You are no longer scared gopher !   

You can change your avatar !

Yay !

shandler

10 years 5 months ago

Resolvi o problema alterando o arquivo myrobotlab.bat da seguinte maneira:
 
De:
 
set PATH=%CD%\libraries\native\x86.64.windows;%CD%\libraries\native\x86.32.windows;%PATH%
start javaw -Djava.library.path="libraries/native/x86.32.windows;libraries/native/x86.64.windows"  -cp "libraries/jar/*;libraries/jar/x86.64.windows/*;libraries/jar/x86.32.windows/*;" org.myrobotlab.service.Runtime -service gui GUIService python Python 
 
 
Para:
 
set PATH=%CD%\libraries\jar;%PATH%
start javaw -Djava.library.path="libraries/jar"  -cp "libraries/jar/*;" org.myrobotlab.service.Runtime -service gui GUIService python Python 
 
 
Executei o arquivo myrobotlab.bat e fui na aba runtime e instalei os modulos e depois executei o arquivo 
myrobotlab.bat original.
 
Espero ter ajudado.