我一直在尝试使用此代码连接到mySQL数据库中的数据库
Button btn_signup = (Button) view.findViewById(R.id.btn_signup);
btn_signup.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
registerProcess();
这样当点击我的注册按钮时,它将使用此代码
private void registerProcess(){
Retrofit retrofit = new Retrofit.Builder()
.baseUrl(Constants.BASE_URL)
.addConverterFactory(GsonConverterFactory.create())
.build();
连接到我的数据库,但是当点击它时显示“无法连接到localhost / 127.0.0.1:80”.i在我的Constants.java中定义了我的BASE_URL
public static final String BASE_URL = "http://localhost/android_login_example/";
答案 0 :(得分:1)
localhost
几乎总是指运行应用程序的计算机。在这种情况下,那将是你的手机。虽然您可能将MySQL数据库作为Android应用程序运行,但您似乎更有可能需要更改数据库连接字符串的主机值。