In Windows, After configuring the Adroid environment variable (such as adding d: android-sdk-windows-1.0_r1ools to the system variable PATH), enter in the command line window:
Emulator
After the Android simulator is started, enter:
Adb shell
Enter the adb shell mode:
Write the network connection proxy settings to the configuration database. If your Internet proxy IP address is 10.193.xx.xx:
Sqlite3/data/com. android. providers. settings/databases/settings. db "insert into system VALUES (99, http_proxy, 10.193.xx.xx: 1080 )"
Check whether the system settings have been successfully changed:
Sqlite3/data/com. android. providers. settings/databases/settings. db "SELECT * FROM system"
The result should contain 99 | http_proxy | 10.193.xx.xx: 1080.
Restart the simulator and use the Internet on Browser.
How to delete the configuration information just written:
Sqlite3/data/com. android. providers. settings/databases/settings. db "delete from system WHERE _ id = 99"