随笔分类 -  ANDROID

linux 解压缩/压缩命令大全
摘要:ar解包:tar xvf FileName.tar打包:tar cvf FileName.tar DirName(注:tar是打包,不是压缩!)---------------------------------------------.gz解压1:gunzip FileName.gz解压2:gzip... 阅读全文

posted @ 2015-04-04 17:25 fishyk 阅读(180) 评论(0) 推荐(0)

android service and bind service
摘要:View Code package com.example.servicedemo;import android.app.Activity;import android.content.ComponentName;import android.content.Context;import andro... 阅读全文

posted @ 2013-04-22 12:17 fishyk

LocationManager操作
摘要:LocationManager mLocationManager; Location mLocation; mLocationManager = (LocationManager)this.getSystemService(Context.LOCATIO... 阅读全文

posted @ 2013-02-03 22:05 fishyk

访问URL
摘要:URL url; try { url = new URL(address); HttpURLConnection con = (HttpURLConnection)url.openConnection(); ... 阅读全文

posted @ 2013-02-03 22:02 fishyk

XML解析
摘要:1.SAXPARSER解析: public void SaxParser(InputStream input){ SAXParserFactory factory = SAXParserFactory.newInstance(); try { SA... 阅读全文

posted @ 2013-02-03 22:00 fishyk 阅读(166) 评论(0) 推荐(0)

导航