Reputation: 3713
I stucked here importing google http library. I made some research in links such as:
The thing is, I imported correctly and was working right. But after some point it stopped to work. I creater one user library, imported the zip file which contain the library but it's not sort of "compiling the library".
Take a look at the print, please:
I'm trying to solve on my own for four hours but I'm getting tired... could anyone help me please?
Edit One:
Edit Two:
Upvotes: 2
Views: 20577
Reputation: 1
Seems like there is a shortcoming of Eclipse not being able to extract .jar files from .zip files (which is the form of many "combo" library packages out there). I wonder if there is a plugin or some other, easier way of directly adding .zip file to java projects via command line or some other way.
Upvotes: 0
Reputation: 3713
Did some more research and found this:
I then followed the steps:
In conclusion: Don't ever import the library as a zip or you will have a long headache.
Hope this helps someone else.
Edit: In case of some error showing up, like missing files belonging to the user library, cleaning the project may prove to be a solution. However, refreshing the project worked just fine for me. Try pressing F5 or right clicking on your project folder and select refresh.
Upvotes: 2
Reputation: 3650
Right click on you class that you want to use the library in on the left hand panel in eclipse. Select "Build Path" => "Configure Build Path".
Click on the Libraries tab
Click on the "Add External Jars" button
Browse your file system for any .jar files(Java archives) that you want to include in your build path.
There you go.. you should now be able to use the archived classes in you code
Upvotes: 0