Java:将字符串转换为在url中使用,作为get的一部分

时间:2017-03-29 13:44:47

标签: java android android-asynctask

您好我会直截了当地说,我正在尝试使用EditText输入在php url中使用我希望url在运行时就像thi一样。

var i = 0;
selector = "#section";
while($(selector + i).length) {
    i++;
}
// selector is now a unique value. append it to the page

我试过了

http://www.free-map.org.uk/course/mad/ws/hits.php?artist=Oasis

但我收到了错误

enter image description here

这是我的代码的主要部分。

 URL url = new URL("http://www.free-map.org.uk/course/mad/ws/hits.php?artist=",et1);

2 个答案:

答案 0 :(得分:1)

我不确定你想做什么。

如果您想将EditText的内容添加到您的网址,请尝试:

URL url = new URL("http://www.free-map.org.uk/course/mad/ws/hits.php?artist="+et1.getText().toString());

答案 1 :(得分:1)

您无法使用EditText附加String。您必须附加EditText的输入。

EditText使用 -

获取输入
EditText et1 = (EditText)findViewById(R.id.et1);
final String input = et1.getText().toString();
// then append it
URL url = new URL("http://www.free-map.org.uk/course/mad/ws/hits.php?artist="+input);