<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>Java problem</title>
        <description> HI..

I&#039;m running the lastest java on my Win7 64-bit system and I keep getting this problem

C:\Windows\system32&amp;gt;rem Amount of RAM to allow Java VM to use

C:\Windows\system32&amp;gt;set REPRAP_RAM_SIZE=1024M

C:\Windows\system32&amp;gt;rem reprap.jar file and stl file

C:\Windows\system32&amp;gt;set REPRAP_DIR=C:\Program Files\Reprap

C:\Windows\system32&amp;gt;rem Java3D and j3d.org libraries

C:\Windows\system32&amp;gt;rem set JAVA_LIBRARY_DIR=C:\Program Files\Reprap

C:\Windows\system32&amp;gt;rem cd so we can find the reprap-wv.stl file.  Can we avoid
this??

C:\Windows\system32&amp;gt;IF NOT EXIST reprap-wv.stl cd &quot;C:\Program Files\Reprap&quot;

C:\Program Files\reprap&amp;gt;java -cp &quot;.\reprap.jar;.\RXTXcomm.jar;.\j3dcore.jar;.\j3
d-org-java3d-all.jar;.\j3dutils.jar;.\swing-layout-1.0.3.jar;.\vecmath.jar;.&quot; -X
mx1024M org/reprap/Main
&#039;java&#039; is not recognized as an internal or external command,
operable program or batch file.

C:\Program Files\reprap&amp;gt;if ERRORLEVEL 1 pause
Press any key to continue . . .

Now I run 2 other java programs with no problems but reprap just don&#039;t want to run, can anyone help, java is not my cup of tea.

Thanks
Auzze</description>
        <link>https://reprap.org/forum/read.php?12,65493,65493#msg-65493</link>
        <lastBuildDate>Wed, 22 Apr 2026 13:27:05 -0400</lastBuildDate>
        <generator>Phorum 5.2.23</generator>
        <item>
            <guid>https://reprap.org/forum/read.php?12,65493,67684#msg-67684</guid>
            <title>Re: Java problem</title>
            <link>https://reprap.org/forum/read.php?12,65493,67684#msg-67684</link>
            <description><![CDATA[ Indeed this works, thanks so much.]]></description>
            <dc:creator>Grogyan</dc:creator>
            <category>RepRap Host</category>
            <pubDate>Mon, 06 Dec 2010 01:42:51 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?12,65493,67683#msg-67683</guid>
            <title>Re: Java problem</title>
            <link>https://reprap.org/forum/read.php?12,65493,67683#msg-67683</link>
            <description><![CDATA[ This may actually solve a long running issue I have had with the RepRap host and Java 6, just going to try it out now to see if it can run.]]></description>
            <dc:creator>Grogyan</dc:creator>
            <category>RepRap Host</category>
            <pubDate>Mon, 06 Dec 2010 01:35:15 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?12,65493,65495#msg-65495</guid>
            <title>Re: Java problem</title>
            <link>https://reprap.org/forum/read.php?12,65493,65495#msg-65495</link>
            <description><![CDATA[ This is a DOS (or command) shell message telling you that it could not find a java.(cmd|com|bat|exe) program to run.<br />
This means that java is not in your PATH statement!<br />
<br />
<b>Either ADD the java directory to your path</b> OR<br />
<br />
<b>Change the batch file to include the full path where java is installed</b> i.e. instead of<br />
<pre class="bbcode">
java -cp ".\reprap.jar;.\RXTXcomm.jar;.\j3dcore.jar;.\j3
d-org-java3d-all.jar;.\j3dutils.jar;.\swing-layout-1.0.3.jar;.\vecmath.jar;." -X
mx1024M org/reprap/Main</pre>
use<br />
<pre class="bbcode">
"c:\Program Files\Java\jre6\bin\java.exe" -cp ".\reprap.jar;.\RXTXcomm.jar;.\j3dcore.jar;.\j3
d-org-java3d-all.jar;.\j3dutils.jar;.\swing-layout-1.0.3.jar;.\vecmath.jar;." -X
mx1024M org/reprap/Main</pre>
Making sure of course that it is the proper path to JAVA on your system.]]></description>
            <dc:creator>rhmorrison</dc:creator>
            <category>RepRap Host</category>
            <pubDate>Fri, 05 Nov 2010 08:19:56 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?12,65493,65493#msg-65493</guid>
            <title>Java problem</title>
            <link>https://reprap.org/forum/read.php?12,65493,65493#msg-65493</link>
            <description><![CDATA[ HI..<br />
<br />
I'm running the lastest java on my Win7 64-bit system and I keep getting this problem<br />
<br />
C:\Windows\system32&gt;rem Amount of RAM to allow Java VM to use<br />
<br />
C:\Windows\system32&gt;set REPRAP_RAM_SIZE=1024M<br />
<br />
C:\Windows\system32&gt;rem reprap.jar file and stl file<br />
<br />
C:\Windows\system32&gt;set REPRAP_DIR=C:\Program Files\Reprap<br />
<br />
C:\Windows\system32&gt;rem Java3D and j3d.org libraries<br />
<br />
C:\Windows\system32&gt;rem set JAVA_LIBRARY_DIR=C:\Program Files\Reprap<br />
<br />
C:\Windows\system32&gt;rem cd so we can find the reprap-wv.stl file.  Can we avoid<br />
this??<br />
<br />
C:\Windows\system32&gt;IF NOT EXIST reprap-wv.stl cd "C:\Program Files\Reprap"<br />
<br />
C:\Program Files\reprap&gt;java -cp ".\reprap.jar;.\RXTXcomm.jar;.\j3dcore.jar;.\j3<br />
d-org-java3d-all.jar;.\j3dutils.jar;.\swing-layout-1.0.3.jar;.\vecmath.jar;." -X<br />
mx1024M org/reprap/Main<br />
'java' is not recognized as an internal or external command,<br />
operable program or batch file.<br />
<br />
C:\Program Files\reprap&gt;if ERRORLEVEL 1 pause<br />
Press any key to continue . . .<br />
<br />
Now I run 2 other java programs with no problems but reprap just don't want to run, can anyone help, java is not my cup of tea.<br />
<br />
Thanks<br />
Auzze]]></description>
            <dc:creator>Auzze</dc:creator>
            <category>RepRap Host</category>
            <pubDate>Fri, 05 Nov 2010 08:00:48 -0400</pubDate>
        </item>
    </channel>
</rss>
