gpt4 book ai didi

java - 通信链路故障 发送到服务器的最后一个数据包是 1 毫秒前。

转载 作者:可可西里 更新时间:2023-11-01 06:34:02 24 4
gpt4 key购买 nike

我尝试连接到 mysql 数据库 但我失败了,并显示了这个错误

Communications link failure Last packet sent to the server was 1 ms ago

这是我的代码?任何人都可以帮助我

package android_programmers_guide.testconnection;


import java.sql.Connection;
import java.sql.DriverManager;

import android.os.Bundle;
import android.app.Activity;
import android.graphics.Color;
import android.view.Menu;
import android.widget.EditText;

public class TestConnection extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_test_connection);



Connection conn = null;
String url = "jdbc:mysql://127.0.0.1:3306/test";
String driver = "com.mysql.jdbc.Driver";
String userName = "root";
String password = "root";


try {
Class.forName(driver).newInstance();
conn = DriverManager.getConnection(url,userName,password);


EditText editText=(EditText) findViewById(R.id.editText1);


editText.setBackgroundColor(Color.GREEN);
editText.setText("Connected to the database");

conn.close();

editText.setBackgroundColor(Color.BLUE);
editText.setText("Disconnected from database");


} catch (Exception e) {
e.printStackTrace();
}



}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.activity_test_connection, menu);
return true;
}

}

最佳答案

此问题是因为您传递的 URL 无效。

检查以下内容:

  1. 确保您的本地主机 MySQL 正在运行
  2. 输入\s检查MySQL的状态。
  3. 检查端口号并确保您使用的是同一端口号。

如果以上都正确,可能是你没有权限。

使用grant all on *.*通过“password”识别,然后运行flush privileges,然后将127.0.0.1替换为localhost 并尝试重新连接。

关于java - 通信链路故障 发送到服务器的最后一个数据包是 1 毫秒前。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13679990/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com