• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Execute java GUI in win9x using .bat

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi, there,
I need you guys help on this one.
I'm trying to run a java GUI written in AWT by using a DOS batch file. The program is running OK in Windows NT, but give me an error message "Out of memory!" when I tried to run it in Windows9x. After right mouse click on the batch file and change the memory settings, I'm able to run it. Does anyone have a better way to do it? The following it the content of my batch file
@echo off
c:\jre\1.3\bin\javaw -Xms40M -Xmx999M myGUI
Thanks!
reply
    Bookmark Topic Watch Topic
  • New Topic