我使用数据库执行应用程序,并检查是否需要更新数据库我想读取txt文件并检查版本。问题是我无法找到任何网站来存储我的txt文件并进行编辑。我试图使用onedrive,dropbox等,但是文件的链接并没有完成.txt
所以我没有读取文件,而是阅读了html代码。有人知道任何网站来存储和编辑我的txt文件吗?或者有人知道如何从onedrive或dropbox读取文件?我的代码在哪里读取txt文件:
protected Void doInBackground(Void... arg0) {
System.out.println("starting");
try {
URL url = new URL("");
BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
String str;
str = in.readLine();
in.close();
System.out.println("version: " + str);
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
感谢您的帮助,对不起我的英语。
答案 0 :(得分:0)
我花了很多时间和onedrive的简单解决方案,只需要复制文件的下载链接,就可以正常阅读。