上一页 1 ··· 5 6 7 8 9
摘要: #include "stdafx.h"#include#pragma comment(lib,"urlmon.lib")//隐藏控制台窗口#pragma comment( linker, "/subsystem:\"windows\" /entry:\"mainCRTStartup\"" )int ... 阅读全文
posted @ 2016-01-25 14:57 hellohyi 阅读(184) 评论(0) 推荐(0) 编辑
摘要: // 追加文本到EditControl void InstmDebugMainDlg::AppendText(int controlId, CString strAdd) { ((CEdit*)GetDlgItem(controlId))->SetSel(GetDlgItem(controlId)- 阅读全文
posted @ 2016-01-12 09:18 hellohyi 阅读(2349) 评论(0) 推荐(0) 编辑
摘要: //写文件操作 public void writeFileData(String fileName, String message){ try{ FileOutputStream fout = openFileOutput(fileName, MODE_PRIVATE); byte[] bytes... 阅读全文
posted @ 2015-12-31 15:01 hellohyi 阅读(203) 评论(0) 推荐(0) 编辑
摘要: 程序执行需要读取到安全敏感项必需在androidmanifest.xml中声明相关权限请求, 完整列表如下:android.permission.ACCESS_CHECKIN_PROPERTIES允许读写访问”properties”表在checkin数据库中,改值可以修改上传( Allows rea... 阅读全文
posted @ 2015-12-30 17:14 hellohyi 阅读(158) 评论(0) 推荐(0) 编辑
摘要: import urllib.request,io,os,sysreq=urllib.request.Request("http://echophp.sinaapp.com/uncategorized/194.html")f=urllib.request.urlopen(req)s=f.read()s... 阅读全文
posted @ 2015-12-21 10:19 hellohyi 阅读(452) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2015-11-29 14:15 hellohyi 阅读(249) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9