gpt4 book ai didi

android - 使用 android studio 从 cloudant 获取 json 数据

转载 作者:行者123 更新时间:2023-11-30 01:05:00 24 4
gpt4 key购买 nike

您好,我需要将 Android 应用程序与 cloudant 连接起来,并使用 android studio 从 cloudant 获取、发布和放置 json 数据,但我不知道如何操作,请您帮帮我好吗?

我尝试使用 volley 进行连接,我使用 sqlite 进行连接,但我不知道如何使用 cloudant 进行连接

public class MainActivity extends AppCompatActivity {

TextView nombre;
TextView email;
TextView telefono;
Button button;
String json_url = "https://jesusjrod19.cloudant.com/gsus/usuarios";

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

button = (Button)findViewById(R.id.bn);
nombre = (TextView)findViewById(R.id.nombre);
email = (TextView)findViewById(R.id.email);
telefono = (TextView)findViewById(R.id.telefono);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {

JsonObjectRequest jsonObjectRequest = new JsonObjectRequest(Request.Method.GET,json_url,null,
new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {

try {
nombre.setText(response.getString("nombre"));
email.setText(response.getString("email"));
telefono.setText(response.getString("telefono"));

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

}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {

Toast.makeText(MainActivity.this,"zaraza", Toast.LENGTH_SHORT).show();
error.printStackTrace();

}
});

MySingleton.getInstance(MainActivity.this).addToRequestque(jsonObjectRequest);




}
});

}

最佳答案

也许这会帮助您解决错误? --

https://mobilefirstplatform.ibmcloud.com/tutorials/en/foundation/7.0/data/cloudant-nosql-db-api/android-cloudant-nosql-db-api/

如果您仍然遇到问题,请使用详细信息更新您的问题...

关于android - 使用 android studio 从 cloudant 获取 json 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38946922/

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