Languages
[Edit]
EN

Java 9+ - get current process ID (PID)

9 points
Created by:
Nikki-Mathews
517

In this short article, we would like to show how to get the current process ID (PID) in Java 9+.

Quick solution:

long pid = ProcessHandle.current().pid();

 

Practical example

package com.example.demo;

public class Program {

    public static void main(String[] args) {

        long pid = ProcessHandle.current().pid();

        System.out.println("PID: " + pid);
    }
}

Example output:

PID: 7788

 

See also

  1. Java 8 - get current process ID (PID)

Alternative titles

  1. Java 9+ - get program own process ID
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join