AntidoteC4 Posted September 8, 2013 Report Posted September 8, 2013 (edited) Salut, imi poate spune cineva cum pot sa import in eclipse in proiectul meu acesteimport org.apache.commons.httpclient.HttpClient;import org.apache.commons.httpclient.HttpException;import org.apache.commons.httpclient.HttpStatus;import org.apache.commons.httpclient.methods.PostMethod;Codul pe care incerc sa-l rulez este:import org.apache.commons.httpclient.HttpClient;import org.apache.commons.httpclient.HttpException;import org.apache.commons.httpclient.HttpStatus;import org.apache.commons.httpclient.methods.PostMethod;public class PostReqEx {public void sendReq(String url,String username,String password){ HttpClient httpClient = new HttpClient(); PostMethod postMethod = new PostMethod(url); postMethod.addParameter("username", username); postMethod.addParameter("password", password); try { httpClient.executeMethod(postMethod); } catch (HttpException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } if (postMethod.getStatusCode() == HttpStatus.SC_OK) { String resp = postMethod.getResponseBodyAsString(); } else { //...postMethod.getStatusLine(); }}}dar la importuri primesc "cannot be resolved" deoarece trebuie sa import jar-urile apache pe care le-am luat de aici : http://www.apache.org/dist/httpcomponents/httpclient/binary/Am incercat sa copiez jar-urile in C:\Program Files\Oracle\JavaFX 2.1 SDK\lib\ dar si in alte locuri, am incercat si ca in acest videohttp://www.youtube.com/watch?v=RXGQgGqdq-IDar tot nu merge. Nu stiu ce sa mai incerc. Sunt incepator in java (in programare in general) si nu reusesc sa-i dau de cap.LE: Gata am rezolvat-o pana la urma. Edited September 9, 2013 by AntidoteC4 Quote