Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How Windows uses the java process to obtain operating system disk and memory information

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)05/31 Report--

This article is about how Windows uses the java process to obtain operating system disk and memory information. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.

Memory: first create a table, and then call the operating system command to obtain memory capacity and other information

Create table os_meminfo (info VARCHAR2 (4000))

/

Create or replace and compile java source named syscmd as

Import java.io.*

Import java.lang.*

Import oracle.sql.*

Import java.io.BufferedInputStream

Import java.io.BufferedReader

Import java.io.InputStreamReader

Public class syscmd extends Object {

Public static void runcmd (int bufSize, String command, String result []) {

/ / String result

String returnResult

Int I = 0

Try {

Process p

P = Runtime.getRuntime () .exec (command)

/ / BufferedInputStream bis=new BufferedInputStream (p.getInputStream (), bufSize)

/ / byte buffer [] = new byte [bufSize]

BufferedInputStream in = new BufferedInputStream (p.getInputStream ())

BufferedReader inBr = new BufferedReader (new InputStreamReader (in))

String lineStr

While ((lineStr = inBr.readLine ())! = null) {

/ / System.out.println (lineStr)

If (lineStr.indexOf (memory) > 0) {

System.out.println (lineStr)

# sql {insert into os_meminfo (info) values (: lineStr)}

}

}

/ / while (bis.read (buffer,0,bufSize)! =-1)

/ / System.out.write (buffer,0,len)

P.waitFor ()

/ / for (int I = 0; I

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report