在android studio中的URL中插入一个值?

时间:2016-01-22 07:22:21

标签: java android json url

我通过意图将活动A中的数据发送到活动B. 然后,我通过以下方式提取意图的结果。

String IdString = questionData.getString("id");
TextView mstudentId = (TextView) findViewById(R.id.ID);
mstudentId.setText(IdString);

我现在想取IdString的值,它等于字符串" id"的值。并将其放在Url中。例如,

final static String URL_ANSWER = "http//:myFake/(IdString)/Url"

如何在Android Studio中执行此操作?

1 个答案:

答案 0 :(得分:0)

像这样,

final static String URL_ANSWER = "http//:myFake/" + IdString + "/Url";

OR 更新

String IdString = questionData.getString("id");
TextView mstudentId = (TextView) findViewById(R.id.ID);
mstudentId.setText(IdString);

final static String URL_ANSWER = "http//:myFake/" + mstudentId.getText() + "/Url";