09 2013 档案
vs watch 窗口不能智能提示问题
摘要:最近发现在watch窗口不能智能提示了, 猜测是vs的智能提示挂了,由于装了resharper,所以在编辑还是有智能提示.禁用reshaper后,发现,编辑窗口也不能智能提示了.在工具 textedior 里发现tentellisense设置一切正常,最后找资料发现在textedior -c# - general 中的auto list members 也是要勾选的. 阅读全文
posted @ 2013-09-25 15:35 tanglaoya321 阅读(228) 评论(0) 推荐(0)
android 反编译
摘要:1、用工具(dex2jar)将dex 转为 jar 文件.2、从jar文件中解压出class 文件 。3、用反编译工具,推荐用jad (最强大,反编译的最好) 阅读全文
posted @ 2013-09-25 01:08 tanglaoya321 阅读(145) 评论(0) 推荐(0)
(转)Configure Fiddler for Android / Google Nexus 7
摘要:转http://fiddler2.com/documentation/Configure-Fiddler/Tasks/ConfigureForAndroidConfigure FiddlerClickTools > Fiddler Options > Connections.Ensure that the checkbox byAllow remote computers to connectis checked.If you check the box, restart Fiddler.Hover over theOnline indicatorat the far right 阅读全文
posted @ 2013-09-17 22:14 tanglaoya321 阅读(342) 评论(0) 推荐(0)
c# 用Zlib 分片解码Gzip包
摘要:byte[] readBuffer = new byte[10240];int bytesRead = -1;Ionic.Zlib.GZipStream zipStream = new Ionic.Zlib.GZipStream(mStream,Ionic.Zlib.CompressionMode.Decompress,true);zipStream.FlushMode = FlushType.Partial;//Ionic.Zlib.DeflateStream zlib = new Ionic.Zlib.DeflateStream(mStream, CompressionMode.Decom 阅读全文
posted @ 2013-09-02 15:20 tanglaoya321 阅读(861) 评论(0) 推荐(0)