为了账号安全,请及时绑定邮箱和手机立即绑定

Android 连接到远程服务器上的数据库时出错

Android 连接到远程服务器上的数据库时出错

元芳怎么了 2022-06-15 10:53:05
我正在尝试将我的 android 应用程序连接到远程服务器上的数据库。我创建了一个登录表单,但它显示以下错误。02/11 21:14:24: Launching appNo apk changes detected since last installation, skipping installation of C:\Users\manav\AndroidStudioProjects\MySQLConnect\app\build\outputs\apk\debug\app-debug.apk$ adb shell am force-stop com.example.mysqlconnect$ adb shell am start -n "com.example.mysqlconnect/com.example.mysqlconnect.MainActivity" -a android.intent.action.MAIN -c android.intent.category.LAUNCHERConnected to process 31621 on device xiaomi-redmi_note_3-dbdeee7eCapturing and displaying logcat messages from application. This behavior can be disabled in the "Logcat output" section of the "Debugger" settings page.W/System: ClassLoader referenced unknown path: /data/app/com.example.mysqlconnect-1/lib/arm64D/AccessibilityManager: current package=com.example.mysqlconnect, accessibility manager mIsFinalEnabled=false, mOptimizeEnabled=false, mIsUiAutomationEnabled=false, mIsInterestedPackage=falseD/OpenGLRenderer: Use EGL_SWAP_BEHAVIOR_PRESERVED: trueI/Adreno: QUALCOMM build                   : a7823f5, I59a6815413    Build Date                       : 09/23/16    OpenGL ES Shader Compiler Version: XE031.07.00.00    Local Branch                     : mybranch22028469    Remote Branch                    : quic/LA.BR.1.3.3_rb2.26    Remote Branch                    : NONE    Reconstruct Branch               : NOTHINGI/OpenGLRenderer: Initialized EGL, version 1.4E/HAL: hw_get_module_by_class: module name gralloc    hw_get_module_by_class: module name grallocI/Timeline: Timeline: Activity_launch_request time:71856102D/OpenGLRenderer: endAllStagingAnimators on 0x559d757b20 (RippleDrawable) with handle 0x559d759ed0I/DpmTcmClient: RegisterTcmMonitor from: com.android.okhttp.TcmIdleTimerMonitorD/OpenGLRenderer: endAllStagingAnimators on 0x559d874d50 (RippleDrawable) with handle 0x559d89f8a0以下是我的 Java 文件。
查看完整描述

2 回答

?
杨__羊羊

TA贡献1943条经验 获得超7个赞

https://snipy.unaux.com/

此网站 ssl 证书不受系统信任。

您可以根据 okhttp doc 信任您的证书。

或者您可以暂时将 https 替换为 http 来解决此问题。

字符串 reg_url = " http://snipy.unaux.com/MySQLDemo/register.php ";

字符串 login_url = " http://snipy.unaux.com/MySQLDemo/login.php ";


查看完整回答
反对 回复 2022-06-15
?
翻翻过去那场雪

TA贡献2065条经验 获得超14个赞

检查 url 是 http 还是 https,然后将连接从 http 更改为 https:


URL url = new URL(reg_url);

HttpURLConnection httpURLConnection = (HttpURLConnection) url.openConnection();


if (reg_url.startsWith("https://") {

    SSLSocketFactory socketFactory = (SSLSocketFactory) SSLSocketFactory.getDefault();

    ((HttpsURLConnection) httpURLConnection).setSSLSocketFactory(socketFactory);

}


httpURLConnection.setRequestMethod("POST");

httpURLConnection.setDoOutput(true);

对登录执行相同的操作。


查看完整回答
反对 回复 2022-06-15
  • 2 回答
  • 0 关注
  • 178 浏览

添加回答

举报

0/150
提交
取消
微信客服

购课补贴
联系客服咨询优惠详情

帮助反馈 APP下载

慕课网APP
您的移动学习伙伴

公众号

扫描二维码
关注慕课网微信公众号