Tuesday, June 4, 2013

How to start a java program without the console in windows?

Write the following code in a "bat" file. Now double click on the batch file to run the jar.



PS: replace the path of jar with your desired jar path.

AUTHOR: OBSCURE

Monday, June 3, 2013

View PIDs and command lines of all running Java processes in Windows

The following line will shows PIDs of all running Java processes in cmd:


and to kill a process from windows cmd:




AUTHOR: OBSCURE

Sunday, June 2, 2013

Unicode characters are showing as question mark(?) instead of real value in nusoap webservice client.

Web service send correct unicode characters, but nusoap converts them to question mark(?). Solution is, adding the following lines after creating nusoap client



AUTHOR: OBSCURE