 |
|
|
 |
|
 |
are in wind mess project we send our phototo another person
ashish jain
|
|
|
|
 |
|
 |
Try this in a .bat file:
start javaw blah
-Valkyrie-MT
|
|
|
|
 |
|
 |
There is a tool called J2Exe. You can even change bat file with exe file with its own icon, use tray or create java service. Something more you can hide/show console runtime.
http://j2exe.tripod.com :->
|
|
|
|
 |
|
 |
name says it all and contact me if u know where to get it at
AIM:Overland88
E-mail:killingurbody77@yahoo.com
REPLAY
|
|
|
|
 |
|
 |
If you only want "javaw.exe" email me: sadr-ba@mail.com .
I can send it for u. but you can not execute your programs with only javaw.exe . you need more...
|
|
|
|
 |
|
 |
I am trying to run the program Limewire and I keep getting the error saying that the javaw.exe file cannot be found.
I am running Windows 98. I took Limewire off of my computer and when I try taking the existing Java program off by using the ADD/REMOVE PROGRAMS function, I get the message back saying that the program cannot be removed.
|
|
|
|
 |
|
 |
To hide the console of a java program you just need to run the javaw.exe loader rather than java.exe. So use:
javaw com.mycompany.MyProgram
instead of:
java com.mycompany.MyProgram
As simple as that
Chris Pilsworth
|
|
|
|
 |
|
 |
how to create a command console in java
|
|
|
|
 |
|
 |
I have experienced the error when run certain applications on Windows NT 4.0 SP5, it would be nice to know if similar error occurs on different platform(s). The errors message sounds:"... application attempted to write to memory address 0x000000ab..."
However when the same application is run with java.exe it works just fine
|
|
|
|
 |
|
 |
hi .
i am facing the problem while launching the java application using javaw.exe
The problem is after double clicking on the desktop shortcut icon of application the aaplication gets launch but console window (DOS window ) is shown for 1-2 seconds . Can u please tell me why this would be happening ??
please write me at callme_sanjay@yahoo.com ..
thanx
|
|
|
|
 |
|
|
 |
|
 |
JAVAW is the Microsoft version of the Java Virtual Machine. This only support compiled code using the Java compiler V1.1 or lower. If you want to use 1.2 or 1.3 functions then you have to use SUN's implementation.
|
|
|
|
 |
|
 |
Your statement is definitely wrong!
JAVAW is included with the JDK from SUN and is of course available for JDK1.2/3
JVIEW.EXE is Microsoft's equivalent for JAVA.EXE
WJVIEW.EXE for JAVAW.EX
|
|
|
|
 |
|
 |
Iam most definitely wrong.
Disregard my last post. Thanks for pointing it out
|
|
|
|
 |
|
 |
Hey i am using javaw.exe still getting the
Consol for a 1-2 seconds ..
What could be the problem ??
|
|
|
|
 |
|
 |
If u are calling a Dos application ( i mean a batch file) definetly the console window will popup, better create a shortcut with command line as javaw application and then the working directory as the directory of the application.
|
|
|
|
 |
|
 |
And if you put it all in a jar file - you can simply double click on it to start the app (as long as "*.jar" files are started with javaw, as default)... this will of cource only affect applications not applets...
|
|
|
|
 |
|
 |
To prevent the dos window from appearing, you need to specify the javaw command in a shortcut instead of a batch-file.
-Kristian
|
|
|
|
 |
|
 |
Or you could use a batch. For Win2K, just prefix the first line of the batch with 'start /b'. That'll clobber the dos box.
Win9x is similar, but I don't have it handy so I can't tell you what it is.
Bye,
jeff
|
|
|
|
 |
|
 |
Could you be specific? i mean, how do you exactly create a shortcut with the javaw command working on a java file?
D
|
|
|
|
 |
|
 |
For instance, right click on your desktop.
Select new, then shortcut.
The 'Create shortcut' window appears.
In the textfield 'Command line:' enter
javaw.exe -cp c:\java\apps\test\test.jar test.TestApplication
Press next. Enter a name. Press finish and you're done!
good luck
-Kristian
|
|
|
|
 |
|
 |
But how do you pass arguments then? I'd like to do
something like this:
javaw.exe -cp c:\java\apps\test\test.jar test.TestApplication testParam1 testParam2
But it seems like those parameters don't get through:
Running it with a shortcut to javaw leads to nothing,
running it with a shortcut to java instead brings up
the usage message for a second (saying "I need two
parameters", although I've put them in the short-
cut's command line).
Any help greatly appreciated,
Thomas
|
|
|
|
 |
|
 |
you have to include %1 %2 ... %x (up to %9 i think) in the shortcut to pass along parameters in windows; your shortcut would then say something like: javaw.exe -cp c:\java\apps\test\test.jar test.TestApplication %1 %2 assuming that you name your shortcut "shortCut", you then call it as: shortCut testParam1 testParam2 note that if your parameters contain whitespaces, you'll need to double-quote them
|
|
|
|
 |
|
 |
A very very nice article.
I like your solution.
I like both ways but of course if I have to choose
I probably would go with javaw.
I'll give you a 5-rating though!
|
|
|
|
 |