简体   繁体   中英

libxml2 use in android

I have successfully cross compiled a C++ library for Android, this library uses libxml2. Now when i try to test it through my jni layer, the native calls seems work fine. But when I do a basic call which imply to parse an xml file(from an url), a libxml function fails.

The xmlTextReaderPtr xmlReaderForFile(const char* filename, const char* encoding, int options) fonction returns NULL .

I call it with an http url, so I wonder if it could be a network access problem.

I've added the internet permission in the manifest but without result.

The error occurs as soon the xmlTextReaderPtr xmlNewTextReaderFilename(const char* URI) is called in the libxml library and errno is set to "No such file or directory". Note the url I use works fine with the "same" CPP code on ubuntu.

I hope somebody can help me to solve this problem.

Thanks for your advice.

Android上的libxml2 编译时没有HTTP支持

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM