try { //连接数据库 Class.forName("com.mysql.jdbc.Driver"); Connection con = DriverManager.getConnection("jdbc:mysql://yourdomain.com:3306/your_db", "your_username", "your_password"); } catch (SQLException e) { //处理数据库连接异常 Log.e("DB Error", e.getMessage()); } catch (Exception e) { //处理其他异常 Log.e("Error", e.getMessage()); }