117.info
人生若只如初见

android setprop 常用属性是哪些

在Android中,setprop命令用于设置系统属性。以下是一些常用的setprop属性:

  1. net.tcp.sock_timeout: 设置TCP套接字的超时时间(以毫秒为单位)。
  2. net.http.auth.timeout: 设置HTTP认证的超时时间(以毫秒为单位)。
  3. net.http.auth.ntlm.domain: 设置NTLM认证的域名。
  4. net.http.auth.ntlm.workstation: 设置NTLM认证的工作站名称。
  5. net.http.auth.ntlm.flags: 设置NTLM认证的标志。
  6. net.http.auth.ssl.truststore: 设置SSL信任库的路径。
  7. net.http.auth.ssl.truststore.password: 设置SSL信任库的密码。
  8. net.http.auth.ssl.truststore.type: 设置SSL信任库的类型。
  9. net.http.auth.ssl.keyalias: 设置SSL密钥库的别名。
  10. net.http.auth.ssl.keypassword: 设置SSL密钥库的密码。
  11. net.http.auth.ssl.keypassword.type: 设置SSL密钥库密码的类型。
  12. net.http.auth.ssl.keystore: 设置SSL密钥库的路径。
  13. net.http.auth.ssl.keystore.password: 设置SSL密钥库的密码。
  14. net.http.auth.ssl.keystore.type: 设置SSL密钥库的类型。
  15. net.http.auth.ssl.protocols: 设置支持的SSL协议。
  16. net.http.auth.ssl.ciphers: 设置支持的SSL加密套件。
  17. net.http.auth.ssl.client_auth: 设置是否启用客户端认证。
  18. net.http.auth.ssl.server_auth: 设置是否启用服务器认证。
  19. net.http.auth.ssl.check_hostname: 设置是否验证服务器主机名。
  20. net.http.auth.ssl.key_store_type: 设置密钥库类型(如JKS、PKCS12等)。
  21. net.http.auth.ssl.key_store: 设置密钥库路径。
  22. net.http.auth.ssl.key_store_password: 设置密钥库密码。
  23. net.http.proxy.host: 设置HTTP代理服务器的主机名。
  24. net.http.proxy.port: 设置HTTP代理服务器的端口号。
  25. net.http.proxy.user: 设置HTTP代理服务器的用户名。
  26. net.http.proxy.password: 设置HTTP代理服务器的密码。
  27. net.http.proxy.exception_list: 设置需要绕过代理的URL模式。
  28. net.http.auth.basic.realm: 设置基本认证的领域名称。
  29. net.http.auth.basic.user: 设置基本认证的用户名。
  30. net.http.auth.basic.password: 设置基本认证的密码。
  31. net.http.auth.digest.uri: 设置Digest认证的URI。
  32. net.http.auth.digest.realm: 设置Digest认证的领域名称。
  33. net.http.auth.digest.user: 设置Digest认证的用户名。
  34. net.http.auth.digest.password: 设置Digest认证的密码。
  35. net.http.auth.digest.nonce: 设置Digest认证的随机数。
  36. net.http.auth.digest.cnonce: 设置Digest认证的客户端随机数。
  37. net.http.auth.digest.qop: 设置Digest认证的QOP(Quality of Protection)。
  38. net.http.auth.digest.nc: 设置Digest认证的nonce计数器。
  39. net.http.auth.digest.uri: 设置Digest认证的URI。
  40. net.http.auth.digest.realm: 设置Digest认证的领域名称。
  41. net.http.auth.digest.user: 设置Digest认证的用户名。
  42. net.http.auth.digest.password: 设置Digest认证的密码。
  43. net.http.auth.digest.nonce:

未经允许不得转载 » 本文链接:https://www.117.info/ask/fec18AzsIAgRRBg.html

推荐文章

  • android文件管理器如何打开

    要打开Android文件管理器,您可以按照以下步骤操作:1. 在您的Android设备上找到并点击“应用程序”图标。2. 在应用程序列表中找到并点击“文件管理器”。3. 如果...

  • android中注释的方法有哪些

    在Android中,注释的方法主要有以下几种: 单行注释:使用//来注释单行内容,例如:// 这是一个单行注释 多行注释:使用/* /来注释多行内容,例如:
    /

  • android中intent的功能和特点是什么

    在Android中,Intent是一种用于在不同组件之间进行通信的对象。它可以用于启动Activity、Service、BroadcastReceiver等组件,以及传递数据和执行操作。Intent的主...

  • android中intent的作用有哪些

    启动组件:Intent用于启动Activity、Service、BroadcastReceiver和ContentProvider等组件。 数据传递:Intent可以在不同组件之间传递数据,通过putExtra()方法将...

  • python清屏命令在多线程环境安全吗

    在Python中,清屏命令通常是通过调用终端的特定命令来实现的,例如在Unix/Linux系统中使用clear命令,在Windows系统中使用cls命令。在多线程环境中使用清屏命令时...

  • python清屏命令的效率如何提高

    在Python中,清屏命令的效率可以通过以下方法提高: 使用os模块: import os def clear_screen(): os.system('cls' if os.name == 'nt' else 'clear') 使用第三方...

  • python清屏命令的兼容性怎样

    在Python中,清屏命令的兼容性取决于你使用的操作系统和终端类型。以下是一些常用的清屏命令及其兼容性: 对于Windows系统: import os
    os.system('cls') 或...

  • python清屏命令在交互式环境好用吗

    在Python的交互式环境(如Jupyter Notebook或IDLE)中,清屏命令并不是内置的,但有一些方法可以实现清屏功能。
    在Jupyter Notebook中,你可以使用以下命令...