发一个自己写的安卓绿色安装器
文章转自王牌软件
站长推荐:NSetup一键部署软件
一键式完成美化安装包制作,自动增量升级,数据统计,数字签名。应对各种复杂场景,脚本模块化拆分,常规复杂的脚本代码,图形化设置。无需专业的研发经验,轻松完成项目部署。(www.nsetup.cn)
只回答业务咨询
站长推荐:NSetup一键部署软件
一键式完成美化安装包制作,自动增量升级,数据统计,数字签名。应对各种复杂场景,脚本模块化拆分,常规复杂的脚本代码,图形化设置。无需专业的研发经验,轻松完成项目部署。(www.nsetup.cn)
有空写了一个安装器,网上的要么很大,要么TMD还一堆广告。坑爹!
用自己的绿色版本吧,无任何广告,多爽!
上截图
核心源码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 |
// ApkInstallerDlg.cpp : 实现文件 // #include "stdafx.h" #include "ApkInstaller.h" #include "ApkInstallerDlg.h" #include "afxdialogex.h" #ifdef _DEBUG #define new DEBUG_NEW #endif // CApkInstallerDlg 对话框 static void Tokenize(CString text, CString split, CStringArray &list) { CString partStr; int position = 0; do { partStr = text.Tokenize(split, position); if (partStr != T("")) { int offset = partStr.Find(T("device")); list.Add(partStr.Mid(0,offset).Trim()); } } while (!partStr.IsEmpty()); } static void GT_UTF8ToGBK(CString &strUTF8) { //获取转换为多字节后需要的缓冲区大小,创建多字节缓冲区 UINT nLen = MultiByteToWideChar(CP_UTF8,NULL,strUTF8,-1,NULL,NULL); WCHAR *wszBuffer = new WCHAR[nLen+1]; nLen = MultiByteToWideChar(CP_UTF8,NULL,strUTF8,-1,wszBuffer,nLen); wszBuffer[nLen] = 0; nLen = WideCharToMultiByte(CP_ACP,NULL,wszBuffer,-1,NULL,NULL,NULL,NULL); CHAR *szBuffer = new CHAR[nLen+1]; nLen = WideCharToMultiByte(CP_ACP,NULL,wszBuffer,-1,szBuffer,nLen,NULL,NULL); szBuffer[nLen] = 0; strUTF8 = szBuffer; //清理内存 delete []szBuffer; delete []wszBuffer; } static CString ParseName(CString strProp,CString beginLabel,CString endLabel) { int mPos = strProp.Find(beginLabel); if (mPos != -1) { mPos += beginLabel.GetLength(); int mEnd = strProp.Find(endLabel,mPos); if(mEnd != -1) { return strProp.Mid(mPos,mEnd-mPos); } } return ""; } //函数名称:AssociateApkFile //函数功能:关联apk文件和图标 //输入参数:strType 文件类型 .apk .mpk等 // strPath 程序路径名 与文件关联的可执行程序的带路径的文件名 //返 回 值:NULL //函数说明: static void AssociateFile(CString strType, CString strPath) { //HKEY_LOCAL_MACHINE/Software/Classes/等于HKEY_CLASSES_ROOT HKEY hkey; CString strKeyName("ITHTW"); CString strResult(""); LPBYTE OwnerGet = new BYTE[80]; //定义用户姓名 memset(OwnerGet, 0, 80); DWORD dType1 = REG_SZ; //定义数据类型 DWORD dLength = 80; //定义数据长度 CString strValue(""); CString strRegPath(""); strRegPath = strType + "\\"; // .apk // 设置路径"HKEY_CLASS_ROOT\\.apk"的键值,关联.apk文件用 if (RegOpenKey(HKEY_CLASSES_ROOT, strRegPath, &hkey) == ERROR_SUCCESS) { RegQueryValueEx(hkey, NULL, NULL, &dType1, OwnerGet, &dLength); strResult = (LPTSTR) OwnerGet; if (-1 == strResult.Find(CString("ITHTW"))) { strValue.Format("ITHTW"); RegSetValue(hkey, _T(""), REG_SZ, strValue, strValue.GetLength() + 1); RegSetValueEx(hkey, "", 0, REG_SZ, (const BYTE*) strValue.GetBuffer(strValue.GetLength()), strValue.GetLength() + 1); RegCloseKey(hkey); } } else { if (RegCreateKey(HKEY_CLASSES_ROOT, strType, &hkey) != ERROR_SUCCESS) { return; } else { strValue.Format("ITHTW"); RegSetValue(hkey, _T(""), REG_SZ, strValue, strValue.GetLength() + 1); RegSetValueEx(hkey, "", 0, REG_SZ, (const BYTE*) strValue.GetBuffer(strValue.GetLength()), strValue.GetLength() + 1); RegCloseKey(hkey); } } // 设置"SOFTWARE\\Classes\\.apk"的键值 memset(OwnerGet, 0, 80); if (strResult.IsEmpty()) strResult.Empty(); strValue.Empty(); strRegPath = CString("SOFTWARE\\Classes\\") + strType + "\\"; // SOFTWARE\\Classes\\.apk if ( RegOpenKey( HKEY_LOCAL_MACHINE, strRegPath, &hkey ) == ERROR_SUCCESS ) { RegQueryValueEx(hkey, NULL, NULL, &dType1, OwnerGet, &dLength); strResult = (LPTSTR) OwnerGet; if (-1 == strResult.Find("ITHTW")) { // 该关键字下没有我的软件相关名,修改之 strValue.Format("ITHTW"); RegSetValue(hkey, _T(""), REG_SZ, strValue, strValue.GetLength() + 1); RegSetValueEx(hkey, "", 0, REG_SZ, (const BYTE*) strValue.GetBuffer(strValue.GetLength()), strValue.GetLength() + 1); RegCloseKey(hkey); } } else { if ( RegCreateKey( HKEY_LOCAL_MACHINE, strRegPath, &hkey ) != ERROR_SUCCESS ) { return; } else { strValue.Format("ITHTW"); RegSetValue(hkey, _T(""), REG_SZ, strValue, strValue.GetLength()+1); RegSetValueEx(hkey, "", 0, REG_SZ, (const BYTE*)strValue.GetBuffer(strValue.GetLength()), strValue.GetLength()+1); RegCloseKey(hkey); } } // 设置路径"HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FileExts\\.apk\\UserChoice"的值 memset(OwnerGet, 0, 80); if (strResult.IsEmpty()) strResult.Empty(); strValue.Empty(); strRegPath = CString( "Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FileExts\\") + strType + "\\UserChoice"; if (RegOpenKey(HKEY_CURRENT_USER, strRegPath, &hkey) == ERROR_SUCCESS) { RegQueryValueEx(hkey, NULL, NULL, &dType1, OwnerGet, &dLength); strResult = (LPTSTR) OwnerGet; if (-1 == strResult.Find("ITHTW")) { // 该关键字下没有我的软件相关名,修改之 strValue.Format("ITHTW"); RegSetValue(hkey, "Progid", REG_SZ, strValue, strValue.GetLength() + 1); RegSetValueEx(hkey, "Progid", 0, REG_SZ, (const BYTE*) strValue.GetBuffer(strValue.GetLength()), strValue.GetLength() + 1); RegCloseKey(hkey); } } else { if (RegCreateKey(HKEY_CURRENT_USER, strRegPath, &hkey) != ERROR_SUCCESS) { return; } else { strValue.Format("ITHTW"); RegSetValue(hkey, "Progid", REG_SZ, strValue, strValue.GetLength() + 1); RegSetValueEx(hkey, "Progid", 0, REG_SZ, (const BYTE*) strValue.GetBuffer(strValue.GetLength()), strValue.GetLength() + 1); RegCloseKey(hkey); } } memset(OwnerGet, 0, 80); if (strResult.IsEmpty()) strResult.Empty(); strValue.Empty(); strRegPath = CString( "Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FileExts\\") + strType; if (RegOpenKey(HKEY_CURRENT_USER, strRegPath, &hkey) == ERROR_SUCCESS) { RegQueryValueEx(hkey, NULL, NULL, &dType1, OwnerGet, &dLength); strResult = (LPTSTR) OwnerGet; if (-1 == strResult.Find("ITHTW")) { // 该关键字下没有我的软件相关名,修改之 strValue.Format("ITHTW"); RegSetValue(hkey, "Progid", REG_SZ, strValue, strValue.GetLength() + 1); RegSetValueEx(hkey, "Progid", 0, REG_SZ, (const BYTE*) strValue.GetBuffer(strValue.GetLength()), strValue.GetLength() + 1); RegCloseKey(hkey); } } else { if (RegCreateKey(HKEY_CURRENT_USER, strRegPath, &hkey) != ERROR_SUCCESS) { return; } else { strValue.Format("ITHTW"); RegSetValue(hkey, "Progid", REG_SZ, strValue, strValue.GetLength() + 1); RegSetValueEx(hkey, "Progid", 0, REG_SZ, (const BYTE*) strValue.GetBuffer(strValue.GetLength()), strValue.GetLength() + 1); RegCloseKey(hkey); } } // 通知系统,文件关联改变了 SHChangeNotify(SHCNE_ASSOCCHANGED, SHCNF_IDLIST, NULL, NULL); SHChangeNotify(SHCNE_UPDATEIMAGE, SHCNF_DWORD, NULL, NULL); } CApkInstallerDlg::CApkInstallerDlg(CWnd* pParent /*=NULL*/) : CDialogEx(CApkInstallerDlg::IDD, pParent) { m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME); memset(szCommand,0,sizeof(szCommand)); memset(szPath,0,sizeof(szPath)); hEvent = CreateEvent(NULL,FALSE,TRUE,NULL); } void CApkInstallerDlg::DoDataExchange(CDataExchange* pDX) { CDialogEx::DoDataExchange(pDX); } BEGIN_MESSAGE_MAP(CApkInstallerDlg, CDialogEx) ON_WM_PAINT() ON_WM_QUERYDRAGICON() ON_WM_DROPFILES() ON_BN_CLICKED(IDC_BTN_INSTALL, &CApkInstallerDlg::OnBnClickedBtnInstall) ON_BN_CLICKED(IDC_BTN_UNINSTALL, &CApkInstallerDlg::OnBnClickedBtnUninstall) ON_BN_CLICKED(IDC_BTN_REG, &CApkInstallerDlg::OnBnClickedBtnReg) END_MESSAGE_MAP() // CApkInstallerDlg 消息处理程序 CString ReadDeviceName(CString cmd) { CApkInstallerDlg* dlg = (CApkInstallerDlg*)AfxGetApp()->GetMainWnd(); char buffer[10240] = {0}; DWORD dwRead = 0; HANDLE hReadPipe = NULL; dlg->ProcessTask(&hReadPipe,cmd.GetBuffer()); cmd.ReleaseBuffer(); CString text; while (ReadFile(hReadPipe,buffer,10240,&dwRead,0)) { CString temp(buffer,dwRead); temp = temp.Trim(); text += temp; } return text; } void CApkInstallerDlg::ReadDevices(void) { _tcscpy_s(szCommand,T("adb devices")); //开始读取 char buffer[10240] = {0}; DWORD dwRead = 0; HANDLE hReadPipe = NULL; ProcessTask(&hReadPipe,szCommand); CString text; while (ReadFile(hReadPipe,buffer,10240,&dwRead,0)) { CString temp(buffer,dwRead); temp = temp.Trim(); text += temp; } Tokenize(text,T("\n"),devices); CComboBox *comboBox = (CComboBox*)GetDlgItem(IDC_COMBO_DEVICES); for (int i=1;i<devices.GetCount();i++)//过滤第一list信息 { CString prop = ReadDeviceName("adb -s "+devices.GetAt(i)+" shell getprop"); CString manufacturer = ParseName(prop,"[ro.product.manufacturer]: [","]"); CString mode = ParseName(prop,"[ro.product.model]: [","]"); comboBox->AddString(manufacturer+mode); } if(comboBox->GetCount() > 0) comboBox->SetCurSel(0); } BOOL CApkInstallerDlg::OnInitDialog() { CDialogEx::OnInitDialog(); // 设置此对话框的图标。当应用程序主窗口不是对话框时,框架将自动 // 执行此操作 SetIcon(m_hIcon, TRUE); // 设置大图标 SetIcon(m_hIcon, FALSE); // 设置小图标 // TODO: 在此添加额外的初始化代码 ReadDevices(); SetDlgItemText(IDC_EDIT_LOG,T("日志")); if(_tcslen(szPath) == 0) SetDlgItemText(IDC_EDIT_FILE,T("文件路径")); else { SetDlgItemText(IDC_EDIT_FILE,szPath); if (CheckApk(szPath)) { //获取包名 SetSzCommand(T("aapt d badging "),CMD_GET_READ_INFO); _tcscat_s(szCommand,szPath); AfxBeginThread(ReadThread,this); } } return TRUE; // 除非将焦点设置到控件,否则返回 TRUE } // 如果向对话框添加最小化按钮,则需要下面的代码 // 来绘制该图标。对于使用文档/视图模型的 MFC 应用程序, // 这将由框架自动完成。 void CApkInstallerDlg::OnPaint() { if (IsIconic()) { CPaintDC dc(this); // 用于绘制的设备上下文 SendMessage(WM_ICONERASEBKGND, reinterpret_cast<WPARAM>(dc.GetSafeHdc()), 0); // 使图标在工作区矩形中居中 int cxIcon = GetSystemMetrics(SM_CXICON); int cyIcon = GetSystemMetrics(SM_CYICON); CRect rect; GetClientRect(&rect); int x = (rect.Width() - cxIcon + 1) / 2; int y = (rect.Height() - cyIcon + 1) / 2; // 绘制图标 dc.DrawIcon(x, y, m_hIcon); } else { CDialogEx::OnPaint(); CRect rt; GetDlgItem(IDC_STATIC_ICO)->GetWindowRect(&rt); CPoint p(rt.left,rt.top); ::ScreenToClient(m_hWnd,&p); CDC *pDC = GetDC(); Graphics graphics(pDC->m_hDC); Image *img = NULL; ImageFromID(IDB_PNG_ANDROID,img); graphics.DrawImage(img,p.x-20,p.y); FontFamily fontFamily(L"微软雅黑"); Gdiplus::Font font(&fontFamily, 11, FontStyleRegular, UnitPoint); PointF pointF((REAL)(p.x+10), (REAL)p.y+30); SolidBrush solidBrush(Color(255, 0, 0, 0)); //TCHAR string[MAX_PATH] = T("安装器"); WCHAR string[MAX_PATH] = L"安装器"; graphics.DrawString(string, (INT)wcslen(string), &font, pointF,&solidBrush); if(img != NULL) delete img; ReleaseDC(pDC); } } //当用户拖动最小化窗口时系统调用此函数取得光标 //显示。 HCURSOR CApkInstallerDlg::OnQueryDragIcon() { return static_cast<HCURSOR>(m_hIcon); } void CApkInstallerDlg::OnDropFiles(HDROP hDropInfo) { // TODO: 在此添加消息处理程序代码和/或调用默认值 TCHAR file_name[MAX_PATH] = {0}; ::DragQueryFile(hDropInfo,0, file_name, MAX_PATH); SetDlgItemText(IDC_EDIT_FILE,file_name); if (CheckApk(file_name)) { //获取包名 SetSzCommand(T("aapt d badging "),CMD_GET_READ_INFO); _tcscat_s(szCommand,file_name); AfxBeginThread(ReadThread,this); } CDialogEx::OnDropFiles(hDropInfo); } UINT CApkInstallerDlg::ReadThread(LPVOID pVoid) { try{ CApkInstallerDlg *dlg = (CApkInstallerDlg*)pVoid; WaitForSingleObject(dlg->hEvent,INFINITE); dlg->SetWindowText(T("处理中,请稍后...")); //开始读取 char buffer[10240] = {0}; DWORD dwRead = 0; HANDLE hReadPipe = NULL; dlg->ProcessTask(&hReadPipe,dlg->szCommand); CString text; while (ReadFile(hReadPipe,buffer,10240,&dwRead,0)) { CString temp(buffer,dwRead); GT_UTF8ToGBK(temp); text += temp; } text.Trim(); if (text.GetLength() > 0) { if (dlg->nCommand == CMD_INSTALL_APP) { dlg->SetDlgItemText(IDC_EDIT_LOG,text); } else if (dlg->nCommand == CMD_GET_READ_INFO) { dlg->SetDlgItemText(IDC_EDIT_LOG,text); CString temp = T("package: name='"); int startIndex = text.Find(temp); int endIndex = text.Find(T("'"),startIndex+temp.GetLength()); int nCount = endIndex - startIndex - temp.GetLength(); if(startIndex >= 0 && nCount > 0) dlg->packAge=text.Mid(startIndex+temp.GetLength(),nCount); } else if (dlg->nCommand == CMD_UNINSTALL) { if(hReadPipe != NULL) CloseHandle(hReadPipe); hReadPipe = NULL; dlg->ProcessTask(&hReadPipe,dlg->szCommand); if (ReadFile(hReadPipe,buffer,10240,&dwRead,0)) { CString new_text(buffer,dwRead); new_text = new_text.Trim(); dlg->SetDlgItemText(IDC_EDIT_LOG,new_text); } } } else { //控制台数据读取失败 strcpy_s(buffer,"数据读取失败"); } CloseHandle(hReadPipe); dlg->SetWindowText(T("处理完成")); SetEvent(dlg->hEvent); }catch(CException *e) { TCHAR msg[512]; e->GetErrorMessage(msg,512); AfxMessageBox(msg); } return 0; } UINT CApkInstallerDlg::ProcessTask(HANDLE* hReadPipe,TCHAR* strCommand) { STARTUPINFO si; PROCESS_INFORMATION pi; si.cb = sizeof(STARTUPINFO); GetStartupInfo(&si); SECURITY_ATTRIBUTES sa = {0}; sa.nLength = sizeof(SECURITY_ATTRIBUTES); sa.bInheritHandle = TRUE; sa.lpSecurityDescriptor = NULL; HANDLE hWritePipe = NULL; if(!CreatePipe(hReadPipe,&hWritePipe,&sa,0)) { AfxMessageBox(T("创建管道失败")); return 0; } si.hStdOutput = hWritePipe; si.hStdError = hWritePipe; si.wShowWindow = SW_HIDE; si.dwFlags = STARTF_USESHOWWINDOW | STARTF_USESTDHANDLES; if (CreateProcess (NULL,strCommand,NULL,NULL,TRUE,NULL,NULL,NULL,&si,&pi)) { //等待进程执行完毕 //WaitForSingleObject(pi.hProcess,INFINITE); //关闭进程和主线程句柄 CloseHandle (pi.hProcess); CloseHandle (pi.hThread); } //关闭写入句柄 CloseHandle(hWritePipe); return 0; } void CApkInstallerDlg::SetSzCommand(TCHAR* wstr,CMD_TYPE nType) { memset(szCommand,0,sizeof(szCommand)); _tcscpy_s(szCommand,wstr); this->nCommand = nType; } void CApkInstallerDlg::OnBnClickedBtnUninstall() { // TODO: 在此添加控件通知处理程序代码 try { TCHAR file_name[512] = {0}; GetDlgItemText(IDC_EDIT_FILE,file_name,512); if (CheckApk(file_name)) { SetDlgItemText(IDC_EDIT_LOG,T("正在卸载:")+packAge); //卸载 SetSzCommand(T("adb -s "),CMD_UNINSTALL); CComboBox *comboBox = (CComboBox*)GetDlgItem(IDC_COMBO_DEVICES); int cur = comboBox->GetCurSel(); if (cur >= 0 && cur < devices.GetCount()-1) { CString device = devices.GetAt(cur+1); _tcscat_s(szCommand,device); _tcscat_s(szCommand,T(" uninstall ")); _tcscat_s(szCommand,packAge); AfxBeginThread(ReadThread,this); } } } catch (CException* e) { TCHAR msg[512]; e->GetErrorMessage(msg,512); MessageBox(msg); } } void CApkInstallerDlg::OnBnClickedBtnInstall() { // TODO: 在此添加控件通知处理程序代码 try { TCHAR file_name[512] = {0}; GetDlgItemText(IDC_EDIT_FILE,file_name,512); if (CheckApk(file_name)) { SetDlgItemText(IDC_EDIT_LOG,T("正在安装:")+CString(file_name)); SetSzCommand(T("adb -s "),CMD_INSTALL_APP); CComboBox *comboBox = (CComboBox*)GetDlgItem(IDC_COMBO_DEVICES); int cur = comboBox->GetCurSel(); if (cur >= 0 && cur < devices.GetCount()-1) { CString device = devices.GetAt(cur+1); _tcscat_s(szCommand,device); _tcscat_s(szCommand,T(" install ")); _tcscat_s(szCommand,file_name); AfxBeginThread(ReadThread,this); } } } catch (CException* e) { TCHAR msg[512]; e->GetErrorMessage(msg,512); MessageBox(msg); } } BOOL CApkInstallerDlg::CheckApk(TCHAR* path) { try { TCHAR* exist = _tcsstr(path,T("apk")); if (exist == NULL) { MessageBox(T("")); return FALSE; } CFileFind finder; if(!finder.FindFile(path)) { MessageBox(T("指定文件不存在")); return FALSE; } } catch (CException* e) { TCHAR msg[512]; e->GetErrorMessage(msg,512); MessageBox(msg); } return TRUE; } void CApkInstallerDlg::OnBnClickedBtnReg() { // TODO: 在此添加控件通知处理程序代码 TCHAR szName[512]; GetModuleFileName(NULL,szName,sizeof(szName)*sizeof(TCHAR)); AssociateFile(".apk",szName); } |
项目源码下载:ApkInstaller
编译好的APP:Release
本文固定链接: http://www.ithtw.com/1528.html
学习日记,兼职软件设计,软件修改,毕业设计。
本文出自 学习日记,转载时请注明出处及相应链接。
本文永久链接: https://www.softwareace.cn/?p=1619