poolcraft / shimeji-ee

Automatically exported from code.google.com/p/shimeji-ee
0 stars 0 forks source link

64 Bit Java Support #5

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Due to the use of 32 bit Windows DLL files, Shimeji-ee does not work with 64 
bit Java.  This should be corrected.

Original issue reported on code.google.com by relic...@gmail.com on 6 Nov 2010 at 8:45

GoogleCodeExporter commented 8 years ago
Agreed, as it leaves people using 64-bit systems completely in the dark. .___. 
Considering a solution to this issue would be truly appreciated. D:

Original comment by busysai...@yahoo.com on 1 Apr 2011 at 2:36

GoogleCodeExporter commented 8 years ago
Well frankly speaking the java files work fine, only problem is the exe hiding 
the cmd win. Try getting Quiet from 
http://www.joeware.net/freetools/tools/quiet/index.htm ; put the Quiet.exe into 
the same folder and edit the shimeji-ee.bat with these commands:

start Quiet.exe "C:\Program Files (x86)\Java\jre6\bin\java" -classpath 
Shimeji-ee.jar -Xmx1000m com.group_finity.mascot.Main 
-Djava.util.logging.config.file=./conf/logging.properties
exit

next just run the .bat file

Original comment by flaming....@gmail.com on 28 Apr 2011 at 10:55

GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
Thanks, Flaming! Works perfectly on my 64-bit Windows 7 now.

Original comment by kakashis...@gmail.com on 27 Jul 2011 at 5:38

GoogleCodeExporter commented 8 years ago
Having done that I get this...
Help...

Original comment by kurisuS...@gmail.com on 13 Nov 2011 at 7:29

Attachments:

GoogleCodeExporter commented 8 years ago
I'm running Java 7 so in the batch file when ever it uses "jre6" I changed it 
to "jre7".  It works now but the cmd stays open when I run the .bat. It doesn't 
work when I use the .exe

Original comment by psychot...@gmail.com on 24 Oct 2012 at 12:56

GoogleCodeExporter commented 8 years ago
http://floorsucker.deviantart.com/journal/FOR-PEOPLE-HAVING-TROUBLES-WITH-THE-DE
SKTOPBUDDIES-251775143

JrockLuver gave a solution that works perfectly fine on my 64 bit windows.

Original comment by Tsun...@gmail.com on 25 Jan 2013 at 3:26

GoogleCodeExporter commented 8 years ago
I got it to work without downloading a new program. Just edit the 
Shimeji-ee.bat file with these commands:
# For computers running Java 6 #
@echo off
start /B C:\"Program Files (x86)"\Java\jre6\bin\javaw -classpath Shimeji-ee.jar 
-Xmx1000m com.group_finity.mascot.Main 
-Djava.util.logging.config.file=./conf/logging.properties
@echo on
exit

I am running Java 7 so I use:
# For computers running Java 7 #
@echo off
start /B C:\"Program Files (x86)"\Java\jre7\bin\javaw -classpath Shimeji-ee.jar 
-Xmx1000m com.group_finity.mascot.Main 
-Djava.util.logging.config.file=./conf/logging.properties
@echo on
exit

Original comment by dustanze...@gmail.com on 17 Mar 2013 at 9:18

GoogleCodeExporter commented 8 years ago
This is nice for hiding the command line, but it looks like it's still using 32 
bit?

Original comment by Hell...@gmail.com on 4 Apr 2013 at 4:24