자바 가 외부 명령 을 실행 하고 결 과 를 콘 솔 로 되 돌려 줍 니 다.
설명:
호출 SHELL 실행 외부
외부 프로그램의 출력 흐름 을 가 져 와 적당 한 READER 로 읽 고 표시 하면 OK
다음은 원본 프로그램 입 니 다.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
public class JavaExeBat
{
public static void main(String[] args)
{
Process p;
//test.bat ipconfig/all
String cmd="c:\\test\\test.bat";
try
{
//
p = Runtime.getRuntime().exec(cmd);
//
InputStream fis=p.getInputStream();
//
InputStreamReader isr=new InputStreamReader(fis);
//
BufferedReader br=new BufferedReader(isr);
String line=null;
//
while((line=br.readLine())!=null)
{
System.out.println(line);
}
}
catch (IOException e)
{
e.printStackTrace();
}
}
}
실행 결 과 는 다음 과 같 습 니 다.
Windows IP Configuration
Host Name . . . . . . . . . . . . : Mickey
Primary Dns Suffix . . . . . . . :
Node Type . . . . . . . . . . . . : Unknown
IP Routing Enabled. . . . . . . . : No
WINS Proxy Enabled. . . . . . . . : No
DNS Suffix Search List. . . . . . : domain
Ethernet 어댑터 로 컬 연결:
Connection-specific DNS Suffix . : domain
Description . . . . . . . . . . . : Broadcom NetXtreme Gigabit Ethernet
......
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.