gpt4 book ai didi

java - 从 OnClickListener 抛出异常

转载 作者:行者123 更新时间:2023-11-29 08:26:42 25 4
gpt4 key购买 nike

我是 java 的新手,我在这里尝试做的是在每次按下按钮时发送一个 Post 请求。这是我的代码

   public class Remotetask extends AppCompatActivity {

TextView tv;
Button btn;

public void PostRequest(String url_from_text) throws IOException {
String url = url_from_text;
URL obj = new URL(url);
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("GET");
con.setRequestProperty("User-Agent", "Mozilla/5.0");
int responseCode = con.getResponseCode();
BufferedReader in = new BufferedReader(
new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
//print in String
tv.setText(response.toString());
}

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_eve_aioremote);
btn = (Button) findViewById(R.id.Button1);
tv = (TextView) findViewById(R.id.textView);

btn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) throws IOException{
PostRequest("api endpoint");
}
});
}
}

虽然这里有这一行

public void onClick(View v) throws IOException

在这里给我这个错误:

错误:onClick(View) in 无法在 OnClickListener 中实现 onClick(View)重写的方法不会抛出 IOException

我发现了另一个人的帖子问了一个类似的问题,但答案真的没有帮助我,因为我对这个有点陌生。谢谢。

最佳答案

从您的 onclick 中删除抛出的 IOException。像这样

@Override
public void onClick(View v) {
try {
PostRequest("api endpoint");
} catch (IOException e){
e.printStackTrace();
}
}

onClickListener 的原始方法不会抛出任何异常,这就是它给出错误的原因。

关于java - 从 OnClickListener 抛出异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52163843/

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