gpt4 book ai didi

java - Android 从 HTML/PHP 获取字符串

转载 作者:行者123 更新时间:2023-12-02 07:56:04 25 4
gpt4 key购买 nike

我不知道如何从 url 中获取简单的字符串。我尝试过此代码的几个版本:

String str = null;
try {
// Create a URL for the desired page
URL url = new URL("mysite.com/thefile.txt");

// Read all the text returned by the server
BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));

while ((str = in.readLine()) != null) {
// str is one line of text; readLine() strips the newline character(s)
}
in.close();
} catch (MalformedURLException e) {
} catch (IOException e) {
}
Toast.makeText(getApplicationContext(), str, Toast.LENGTH_LONG).show();

拥有所有适当的 list 权限,但无法返回任何内容。我的 txt 文件只包含

www.google.com

我可以通过手机或电脑上的任何浏览器访问它。有什么想法吗?

最佳答案

如果我查看你的代码,我并不感到惊讶,这并没有告诉你出了什么问题:

} catch (MalformedURLException e) {
} catch (IOException e) {
}

如果发生错误,您将不会注意到任何事情。只需将某种错误报告放入这些 catch 分支中并查看日志即可。顺便说一下,mysite.com/thefile.txt 不是 URL,而 http://mysite.com/thefile.txt 是。

关于java - Android 从 HTML/PHP 获取字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9623799/

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