Importing org.apache.commons into android applications

前端 未结 4 1050
情歌与酒
情歌与酒 2020-12-31 07:07

Hay, how do i import org.apache.commons packages into android so i can use them in my applications?

Thanks

相关标签:
4条回答
  • 2020-12-31 07:24

    If you are using android Stuido - that doesn't yet supports adding libraries - you need to edit the src/build.gradle

    I wanted to add org.apache.commons.net and My file called 'org.apache.commons.net.jar' was placed in the libs folder, so my build.gradles dependencies look now like this:

    dependencies {
        compile files('libs/android-support-v4.jar')
        compile files('libs/org.apache.commons.net.jar')
    }
    
    0 讨论(0)
  • 2020-12-31 07:28

    If you're using eclipse:

    1. Download jar packages for libraries you are interested in
    2. Go to project properties in eclipse -> Java Build Path -> Libraries. Add External JARs here.
    0 讨论(0)
  • 2020-12-31 07:32

    Also, be warned that not all of them can be automatically converted to Dalvik. For example commons-httpclient does not convert cleanly from the release binaries, you need to go through source to make it work.

    0 讨论(0)
  • 2020-12-31 07:36

    Just for completeness' sake - if you aren't using eclipse to develop and you are building with ant - just put the jar in your libs folder of your project.
    Done!

    0 讨论(0)
提交回复
热议问题