我试图从网站上获取一些文本并将其设置为Java中的字符串。
我对Java中的Web连接几乎没有任何经验,并希望得到一些帮助。
这是我到目前为止所得到的:
static String wgetURL = "http://www.realmofthemadgod.com/version.txt";
static Document Version;
static String displayLink = "http://www.realmofthemadgod.com/AGCLoader" + Version + ".swf";
public static void main(String[] args) throws IOException{
Version = Jsoup.connect(wgetURL).get();
System.out.println(Version);
JOptionPane.showMessageDialog(null, Version, "RotMG SWF Finder", JOptionPane.DEFAULT_OPTION);
}
我尝试使用Jsoup,但我一直遇到启动错误(启动时出现问题)。
答案 0 :(得分:1)
你的问题与Jsoup无关。
您尝试使用Version
创建字符串,而Version
未定义。
将您的代码更改为:
public static void main(String[] args) throws IOException{
String url = "http://www.realmofthemadgod.com/version.txt"
Document doc = Jsoup.connect(url).get();
System.out.println(doc);
// query doc using jsoup ...
}