如何从android市场下载apk文件到电脑?
是否可以从 android 市场下载 android .apk 应用程序到我们的电脑上?
Is it possible to download the android .apk application from the android market to our pc?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
也许这会对你有所帮助。
http: //www.howtogeek.com/howto/21862/how-to-enable-the-android-market-in-the-google-android-emulator/
http://techdroid.kbeanie.com/2009/11/android-market-on-emulator.html
一旦您从模拟器访问 android market,您可能可以从 ddms 获取 .apk
Probably this will help you.
http://www.howtogeek.com/howto/21862/how-to-enable-the-android-market-in-the-google-android-emulator/
http://techdroid.kbeanie.com/2009/11/android-market-on-emulator.html
Once you get access to android market from emulator you can probably get .apk from ddms
是的,您需要禁用 SSL 错误通知的最新版 Chrome,然后提供您的设备 ID、电子邮件地址和密码(全部存储在您的计算机本地以获取 Android Market cookie)。
对于任何仍然需要它的人,您可以在这里获取它:http://apps.evozi.com/apk-下载器/
Yes , You'll need the latest version of Chrome with SSL error notifications disabled, then you supply your device ID, email address and password (all stored locally on your computer to grab the Android Market cookie).
To anyone still need it , you can get it here : http://apps.evozi.com/apk-downloader/
您可以下载所有已安装的应用程序。从手机到SD卡。您只需要安装一个 Android 应用程序 appInstaller ...您只需备份所有应用程序。该软件生成apk文件并存储在SD卡中..然后您可以将其存储在您的电脑中..
You can download all your installed apps. from mobile to SD Card. You just need to install an android application appInstaller...You just need to backup all your applications. This software generates apk files and stores in the SD card..And then you can store it in your pc..
您可以安装 android-sdk 并使用 adb 命令从设备中提取 apk。
命令是:adb pull
you can install the android-sdk and use the adb command to pull the apk from your device.
The command is: adb pull
这是 Mur Votema 帖子的更新。
Android 2.2 with Market 可在此处获取
http://techdroid.kbeanie.com/search/label/Market%20on%20Emulator
This is an update to the post by Mur Votema.
The Android 2.2 with Market is available here
http://techdroid.kbeanie.com/search/label/Market%20on%20Emulator
现在,您可以使用 Google Chrome 扩展程序来执行此操作:APK 下载器
Now you can do this by using this extension for Google Chrome: APK Downloader
如果您可以控制用于下载的网络,则可以相对轻松地从 TCP 流中获取它:
在上图中,Android 设备连接到您的 WiFi 接入点,该接入点连接到您的路由器,它连接到互联网(因此也连接到 Android 市场)。通过在路由器上运行一些捕获工具(例如WireShark或tcpdump,甚至像Fiddler这样的捕获反向代理),您将看到经过它的所有流量,并且可以捕获它。
可能的注意事项:
If you're in control of the network that you are using for the download, you could relatively easily grab it from the TCP stream:
In the above diagram, the Android device connects to your WiFi access point, which is connected to your router, which connects to the Internet (and therefore the Android market). By running some capture tool (e.g. WireShark or tcpdump, even a capturing reverse proxy like Fiddler) on the router, you will see all the traffic passing across it, and you could capture it.
Possible caveats: