摘要: 因为在开始->运行->cmd中敲入pingdl-ssl.google.com-t始终ping不通,关闭cmd后首先需要下载一个代理服务器下载地址打开此软件,在内容选项中看到生成的代理地址,记住ip地址127.0.0.1和端口号8580之后打开androidsdkmanager.exe打开tools里的options在弹出的对话框中,把刚才的ip地址输入到httpproxyserver中,把端口输入到httpproxyport中,选中forcehttps://...关闭对话框重新打开androidsdkmanager.exe会迅速出现更新列表,选中需要更新的包后,点击installp 阅读全文
posted @ 2013-10-24 13:19 长虹落日 阅读(487) 评论(0) 推荐(0) 编辑
摘要: #include #include int isLittleEndian(){ unsigned short i=1; return (1 == *((char *)&i));}int main() { if(isLittleEndian()) { printf("低字节序\n"); } else { printf("高字节序\n"); }} 阅读全文
posted @ 2013-10-24 12:24 长虹落日 阅读(585) 评论(0) 推荐(0) 编辑