您好我会直截了当地说,我正在尝试使用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
但我收到了错误
这是我的代码的主要部分。
URL url = new URL("http://www.free-map.org.uk/course/mad/ws/hits.php?artist=",et1);
答案 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);