In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
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.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.