代码改变世界

阅读排行榜

Android NDK 学习之接受Java传入Object数组

2014-12-03 12:23 by 雪夜&流星, 674 阅读, 收藏,
摘要: 本博客主要是在Ubuntu 下开发,且默认你已经安装了Eclipse,Android SDK, Android NDK, CDT插件。在Eclipse中添加配置NDK,路径如下Eclipse->Window->Preferences->Android->NDK ,选择NDK的路径,然后Apply即可... 阅读全文

[原]java正则表达式匹配网页页面数据

2011-08-23 23:38 by 雪夜&流星, 662 阅读, 收藏,
摘要: 转载请说明出处:http://www.cnblogs.com/tanlon/archive/2011/08/23/2151388.html最近做项目一直在和正则表达式打交道,也有一些心得,特此记录下来。用正则表达式抓取网页上需要的东西,这里用的QQ音乐里面的一些数据为例。基本的正则表达式可以参考:http://www.cnblogs.com/deerchao/archive/2006/08/24/zhengzhe30fengzhongjiaocheng.htmlpublic class Radio { public static void main(String[] args) { ... 阅读全文

数据结构学习----线性表的链式表示之升序排序的单链表(Java实现)

2014-10-15 20:14 by 雪夜&流星, 661 阅读, 收藏,
摘要: 线性表接口LList:package com.clarck.datastructure.linked;/** * 线性表接口LList,描述线性表抽象数据类型,泛型参数T表示数据元素的数据类型 * * @author clarck * */public interface LList { /... 阅读全文

Java删除文件夹以及文件夹下的子目录与文件

2011-07-07 15:33 by 雪夜&流星, 647 阅读, 收藏,
摘要: importjava.io.File;publicclassFileOperate...{ publicstaticvoidmain(String[]args)...{ Stringstr="d:\bb"; Filefile=newFile(str); Filefileb=newFile("d:\bb.rar"); FileOperatefp=newFileOperate(); fp.deleteFile(file) }private void deleteFile(File file){ if(file.exists()){ if(file.isFil 阅读全文

Investigating Your RAM Usage

2016-01-26 16:39 by 雪夜&流星, 620 阅读, 收藏,
摘要: 转载自:http://developer.android.com/intl/zh-cn/tools/debugging/debugging-memory.htmlBecause Android is designed for mobile devices, you should always be ... 阅读全文
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 42 下一页