자바 호출 scrapy 파충류 실행

1115 단어 자바python
인터넷 에서 찾 아 봤 는데 자바 에서 Scrapy 프레임 워 크 를 사용 하여 파충 류 를 수행 하 는 예 시 를 완전히 말 하지 않 았 습 니 다.사실은 간단 합 니 다.알 아 보 세 요.
전제:
scrapy 프로그램,scrapy 실행 스 크 립 트:
scrapy 실행 스 크 립 트 는 다음 과 같 습 니 다(이름:start.py):
from scrapy import cmdline

cmdline.execute("scrapy crawl    -s LOG_FILE=xx.log".split())

#  
#cmdline.execute("scrapy crawl   ".split())

자바 가 python 을 호출 하 는 방법 은 여러 가지 가 있 습 니 다.저 는 가방 의 번 거 로 움 을 피하 기 위해 Runtime.exec 를 사용 하여 python 을 호출 하 는 것 을 선택 하 였 습 니 다.
주요 명령 을 다음 과 같이 호출 합 니 다:
//python     
String executePath = path + "\\start.py";
//    Arr
String[] cmdArr = new String[]{"python",executePath};
//     :     ;        
Process process = Runtime.getRuntime().exec(cmdArr,null,new File(path));

scrapy 의 print 인쇄 수신:
InputStream inputStream = process.getInputStream();
byte[] b = new byte[1024];
while (inputStream.read(b) != -1) {
    writeFilePath = new String(b);
}
//  linux     ,0     
int statusNum = process.waitFor();
inputStream.close();

런 타임 방법 에 대해 자세히 알 아 볼 수 있 습 니 다.

좋은 웹페이지 즐겨찾기