Android SDK:系统设置

发布于 2024-10-07 15:58:27 字数 84 浏览 2 评论 0原文

如何设置系统端口和代理? java中有没有什么命令可以做到这一点? 如果没有,我如何在超级用户权限下更改它? 我尝试了很多代码,但没有人适合我。 请帮忙。

How can i set the System Port and Proxy?
Is there any command in java that can do that?
If not, how can i change it with superuser permission?
I have tryed a lot of codes, but no one worked for me.
Please help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一指流沙 2024-10-14 15:58:28
String myProxy=Proxy.getDefaultHost() ; 
        int myPort=Proxy.getDefaultPort(); 
        HttpHost proxy = new HttpHost(myProxy,myPort,"http"); 
        client.getParams().setParameter (ConnRoutePNames.DEFAULT_PROXY, proxy);  

尝试在你的java文件中给出这个。在此之前更改模拟器中的代理设置!

String myProxy=Proxy.getDefaultHost() ; 
        int myPort=Proxy.getDefaultPort(); 
        HttpHost proxy = new HttpHost(myProxy,myPort,"http"); 
        client.getParams().setParameter (ConnRoutePNames.DEFAULT_PROXY, proxy);  

try giving this within your java file. before that change your proxy settings in emulator!

伴随着你 2024-10-14 15:58:28

注意:这不是持久的。

System.setProperty("http.proxyHost", "192.x.x.x"); 
System.setProperty("http.proxyPort", "8080");
System.setProperty("http.proxyUser", "myuser"); 
System.setProperty("http.proxyPassword", "mypassword");

Note: This is not persistent.

System.setProperty("http.proxyHost", "192.x.x.x"); 
System.setProperty("http.proxyPort", "8080");
System.setProperty("http.proxyUser", "myuser"); 
System.setProperty("http.proxyPassword", "mypassword");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文