博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2012年8月30日

摘要: Android中JNI编程的那些事儿首先说明,Android系统不允许一个纯粹使用C/C++的程序出现,它要求必须是通过Java代码嵌入Native C/C++——即通过JNI的方式来使用本地(Native)代码。因此JNI对Android底层开发人员非常重要。如何将.so文件打包到.APK让我们先从最简单的情况开始,假如已有一个JNI实现——libxxx.so文件,那么如何在APK中使用它呢?在我最初写类似程序的时候,我会将libxxx.so文件push到/system/lib/目录下,然后在Java代码中执行System.loadLibrary(xxx),这是个可行的做法,但需要取得/sy 阅读全文
posted @ 2012-08-30 16:26 Likwo 阅读(2598) 评论(1) 推荐(0) 编辑

摘要: strftime<ctime>size_t strftime ( char * ptr, size_t maxsize, const char * format, const struct tm * timeptr );Format time to stringCopies intoptrthe content offormat, expanding its format tags into the corresponding values as specified bytimeptr, with a limit ofmaxsizecharacters.ParametersptrP 阅读全文
posted @ 2012-08-30 10:42 Likwo 阅读(7576) 评论(0) 推荐(0) 编辑