2016-08-10 49 views
0

我使用Apache的HttpClient和它找不到如何添加org.apache.http.legacy到SBT

import org.apache.http.impl.client.HttpClients; 

對谷歌快速搜索導致我org.apache.http.legacy,但我無法找到組,工件和org.apache.http.legacy的修訂

它們是什麼,我如何將該依賴添加到我的build.sbt文件中?總堆棧跟蹤是

[error] /Users/vangapellisanthosh/Development/coupon-engine-play/app/utils/LocalUtils.java:13: cannot find symbol 
[error] symbol: class HttpClients 
[error] location: package org.apache.http.impl.client 
[error] import org.apache.http.impl.client.HttpClients; 
[error] /Users/vangapellisanthosh/Development/coupon-engine-play/app/utils/LocalUtils.java:66: cannot find symbol 
[error] symbol: variable HttpClients 
[error] location: class utils.LocalUtils 
[error]   HttpClient httpclient = HttpClients.createDefault(); 
[info] /Users/vangapellisanthosh/Development/coupon-engine-play/app/controllers/CouponsController.java: /Users/vangapellisanthosh/Development/coupon-engine-play/app/controllers/CouponsController.java uses or overrides a deprecated API. 
[info] /Users/vangapellisanthosh/Development/coupon-engine-play/app/controllers/CouponsController.java: Recompile with -Xlint:deprecation for details. 
[error] (compile:compileIncremental) javac returned nonzero exit code 
[info] Compiling 6 Scala sources and 18 Java sources to /Users/vangapellisanthosh/Development/coupon-engine-play/target/scala-2.11/classes... 
[error] /Users/vangapellisanthosh/Development/coupon-engine-play/app/utils/LocalUtils.java:13: cannot find symbol 
[error] symbol: class HttpClients 
[error] location: package org.apache.http.impl.client 
[error] import org.apache.http.impl.client.HttpClients; 
[error] /Users/vangapellisanthosh/Development/coupon-engine-play/app/utils/LocalUtils.java:66: cannot find symbol 
[error] symbol: variable HttpClients 
[error] location: class utils.LocalUtils 
[error]   HttpClient httpclient = HttpClients.createDefault(); 
[info] /Users/vangapellisanthosh/Development/coupon-engine-play/app/controllers/CouponsController.java: /Users/vangapellisanthosh/Development/coupon-engine-play/app/controllers/CouponsController.java uses or overrides a deprecated API. 
[info] /Users/vangapellisanthosh/Development/coupon-engine-play/app/controllers/CouponsController.java: Recompile with -Xlint:deprecation for details. 
[error] (compile:compileIncremental) javac returned nonzero exit code 
[error] application - 

我的代碼是

HttpClient httpclient = HttpClients.createDefault(); 
HttpPost httppost = new HttpPost(URL); 
httppost.addHeader(API_KEY, X_API_KEY); 
// Request parameters and other properties. 
List<NameValuePair> params = new ArrayList<NameValuePair>(2); 
params.add(new BasicNameValuePair(GRANT_TYPE, "password")); 
params.add(new BasicNameValuePair(USERNAME, _USERNAME)); 
params.add(new BasicNameValuePair(PASSWORD, O_PASSWORD)); 
httppost.setEntity(new UrlEncodedFormEntity(params, "UTF-8")); 

HttpResponse response = httpclient.execute(httppost); 
HttpEntity entity = response.getEntity(); 

if (entity != null) { 
    InputStream instream = entity.getContent(); 
    try { 
     System.out.println(instream); 
    } finally { 
     instream.close(); 
    } 
} 

回答

1

對谷歌快速搜索導致我org.apache.http.legacy

不知道你搜索的內容,但我知道這是用於Android項目的依賴項嗎?

什麼你正在尋找能在MvnRespository

libraryDependencies += "org.apache.httpcomponents" % "httpclient" % "4.5.2" 
找到
相關問題