how can I get to know what threads run within process java.exe on windows


 
Thread Tools Search this Thread
Top Forums Programming how can I get to know what threads run within process java.exe on windows
# 1  
Old 05-13-2009
how can I get to know what threads run within process java.exe on windows

I am writing java application on windows.
There are more than 100 threads run within java.exe.
I want to know what threads run within process java.exe so that I can find out if there are abnormal java threads.
# 2  
Old 05-13-2009
Process Explorer can show you the threads within an application, but it can't show you the code or environment it is running, if that's what you're looking for.
# 3  
Old 05-13-2009
Use jdb.exe provided by Sun itself. Startup your java app using jdb.exe and issue the command 'threads'. Issue help to see more options.
# 4  
Old 05-14-2009
Use jconsole, shipped with any Sun JDK >= 5.0 (preferably 6).
# 5  
Old 05-16-2009
Thank you for reply.
I have tried jdb. It's useful for my problem.
Process Explorer is not useful for my current problem, but it's a useful tool.
I've had jdk 6.0 installed.
Thank you all again.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Seen Windows pc, having all the features of Linux, could exe, read and edit save like windows

Hi, totally new to linux base using windows when started learning and using computers. but i remember that one pc was there , look alike windows desktop, but could not do the task as windows just click and open and view edit etc. But, you could do a little differently even saving in and opening... (8 Replies)
Discussion started by: jraju
8 Replies

2. HP-UX

How to get number of threads for single java process on HP-UX OS?

Hi All, When i was trying to get total number of threads per java process using this command ps -o NLWP PID, I'm not getting any output. Could someone help me in this issue. Thanks, GMar (1 Reply)
Discussion started by: mgangumolu
1 Replies

3. Programming

how to get result from exe file using java

hello i have problem getting result from exe file using java i have exe file (inducer.exe) when i open in command line it i have to put two inputs function name file name i had make bat file which work OK until opening the program bat file contain inducer.exe //OK with this it open... (1 Reply)
Discussion started by: vip_a1
1 Replies

4. UNIX and Linux Applications

Is it possible to run .exe in unix

hi friends i want to know if its possible to run windows exe files in unix.... i know the file system in windows and unix are totally different. but is there any application which allows this???? (2 Replies)
Discussion started by: vikashtulsiyan
2 Replies

5. Windows & DOS: Issues & Discussions

run process on windows server

hi all in our office we have windows 2003 server for one particular application designed by our team need one service must be running on windows server now when we run process from any user it runs till that user is logged in as soon as he logs off service stops running. we had win 2000... (1 Reply)
Discussion started by: zedex
1 Replies

6. HP-UX

How to run .exe file

Hello, I have an test.exe file under a directory. When i execute the .exe file directory from the prompt, i get following error: $ test.exe <enter> ksh: test.exe: not found How do i solve this error? TIA, Ramesh (1 Reply)
Discussion started by: brap45
1 Replies

7. Windows & DOS: Issues & Discussions

WRQ Reflection SFTP process hangs when run using windows scheduler

Hi I am doing development on .net framework on Win 2003 box. I am scheduling a job using Windows scheduler to kick off SFTP of files from a local directory to a remotre Unix box. I am using WRQ Reflection Multihost v12.0.7 standard edition for this. Here is how we are scheduling the thing.... (0 Replies)
Discussion started by: kapilash
0 Replies

8. Linux

How to run .exe

Hai, is there any way to run an .exe file in unix environment . i have read that WINE HQ supports this concept but its very inconsistent and upto the user risk . but i tried WINE but iam not able to configure it can any one help me in this matter Regards Sanju (1 Reply)
Discussion started by: sanjustudy
1 Replies

9. UNIX for Dummies Questions & Answers

not able to run base64 exe

Hi, I have copied base64.exe under base64-1.3 folder and i am trying to run base64.exe from another folder called Request. But i am getting the following error message. mga.ksh: base64: not found Please let me know how to execute the base64.exe from a directory where it is not installed. ... (0 Replies)
Discussion started by: lotus123
0 Replies

10. Shell Programming and Scripting

Run an exe from different folder

Am trying to run a exe on my unix machine from a different folder. For instance, i have a perl file in a folder /home/asif/runprj.pl which runs a exe in a different folder /home/projects/cobsat/a.out and my perl file is something like this #!/usr/bin/perl... (1 Reply)
Discussion started by: Asif Ali
1 Replies
Login or Register to Ask a Question