06 2015 档案

摘要:1.首先建立wifi热点服务器 wifi客户端连接2.开启一个子线程循环监听某个端口,进行数据流输入输出/* 服务器 接收数据 */ class Receiver extends Thread { public String receiverContent; public boolean fla... 阅读全文
posted @ 2015-06-19 23:47 Android开发8585 阅读(532) 评论(0) 推荐(0)
摘要:new MyAsyncTask() .execute("http://pic.baike.soso.com/p/20120716/bki-20120716095331-640956396.jpg");class MyAsyncTask extends AsyncTask { @Overri... 阅读全文
posted @ 2015-06-17 18:30 Android开发8585 阅读(131) 评论(0) 推荐(0)
摘要:创建新表 sqlite>create table (f1 type1, f2 type2,…);例如:create table people(id,name,age);删除表 sqlite>drop table 例如:drop table people;向表中添加新记录sqlite>ins... 阅读全文
posted @ 2015-06-03 21:50 Android开发8585 阅读(216) 评论(1) 推荐(0)