중화사전망 - 신화사전 - 브라우저를 열지 않고 java를 사용하여 URL에 연결

브라우저를 열지 않고 java를 사용하여 URL에 연결

import?java.awt.Desktop;

import?java.io.IOException;

import?java.net.URI;

import?java.net.URISyntaxException;

/** *?@author?Mao Xingyu*?@time2013년 9월 14일*/

public?class?Gotourl?

public?static?void?main(String[]?args)?{

//CMD를 활성화하여 IE를 실행하여 URL을 엽니다.

String?str?=?"cmd?/c?start?iexplore?http://192.168.1.103/output.cgi?text=*3422F050&submit=Submit";

try?{

Runtime.getRuntime().exec(str);

}?catch?(IOException?e)?{

e.printStackTrace( );

}

//URL을 열려면 시스템 기본 브라우저를 활성화하세요.

시도하시겠습니까?{

URI?uri?=?new?URI("http://192.168.1.103/output.cgi?text=*3422F050&submit=Submit");

Desktop.getDesktop().browse(uri);

}?catch?(URISyntaxException?e)?{

e.printStackTrace();

}?catch?(URISyntaxException?e)?{

e.printStackTrace();

p>

}?catch?(IOException?e)?{

e.printStackTrace();

}

}

}

IE를 호출하는 코드입니다. 열다