gpt4 book ai didi

java - JLabel的文本没有改变

转载 作者:太空宇宙 更新时间:2023-11-04 07:08:43 25 4
gpt4 key购买 nike

编辑:巨大的代码重组,老问题在这里:http://pastebin.com/Mbg4dYiY

我创建了一个基本程序,旨在使用 Swing 在窗口中显示天气。我正在使用 IntelliJ 进行开发,并且在其中使用了 UI 构建器。我试图从 Weather Underground 服务器获取一些信息,然后使名为 weatherlabel 的 JLabel 显示此信息。然而,JLabel 实际上并没有在窗口中发生变化;而是在窗口中发生变化。它只是停留在“Weather Will Go Here”。我该如何解决这个问题?

这是我的 main.java:

public class main {
public static void main(String[] args) {
System.out.println("Hello World!");
Display d = new Display();
d.getandsetWeather();
}

}

这是我的 Display.java:

public class Display {

Display disp = this;

public JPanel myPanel;
public JLabel weatherfield;
private JButton button1;

public void init() {
JFrame frame = new JFrame("Display");
frame.setContentPane(new Display().myPanel);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setMinimumSize(new Dimension(480, 234));
frame.pack();
frame.setVisible(true);
}

public void getandsetWeather() {
String editedline = null;
init();
try {
// Construct data
String data = URLEncoder.encode("key1", "UTF-8") + "=" + URLEncoder.encode("value1", "UTF-8");
data += "&" + URLEncoder.encode("key2", "UTF-8") + "=" + URLEncoder.encode("value2", "UTF-8");

// Send data
URL url = new URL("http://api.wunderground.com/api/772a9f2cf6a12db3/geolookup/conditions/q/UK/Chester.json");
URLConnection conn = url.openConnection();
conn.setDoOutput(true);
OutputStreamWriter wr = new OutputStreamWriter(conn.getOutputStream());
wr.write(data);
wr.flush();

// Get the response
BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));

String line;
while ((line = rd.readLine()) != null) {

if( line.contains("\"weather\":")) {
System.out.println(line);
editedline = line.replace("\"weather\":\"", "");
editedline = editedline.replace("\",", "");
System.out.println(editedline);
weatherfield.setText(editedline);
}


}
wr.close();
rd.close();
weatherfield.setText(editedline);
System.out.println(weatherfield.getText());
weatherfield.repaint();
weatherfield.revalidate();
} catch (Exception e) {
System.out.println("Error!" + e);
}


}

}

当我运行程序时,这会打印到日志中:

Hello World!
"weather":"Scattered Clouds",
Scattered Clouds
Scattered Clouds

最佳答案

  1. 您似乎对 OOP 和代码流有一种奇怪的理解
  2. 您必须使用 main 方法,其中一个方法您尝试调用另一个 main 方法。不要那样做。一个程序应该只有一个 main 方法。你不应该永远必须这样做

    Display.main(new String[]{});
  3. 为什么要有这个 ChangeWeatherLabelText 类?只有一种方法,在它自己的类中似乎不需要。您的实例化 if Display 在该方法中对程序的其余部分没有任何作用。所以你的调用对标签没有影响。

  4. 不要使用 3,而是将该方法放在实际具有标签的类中,并仅在方法中引用标签字段。
  5. 此外,GetWeather 看起来就像一个带有辅助方法的辅助类。如果“Helper”类方法不返回某些内容,那么它们就毫无用处。
  6. 恕我直言,您应该重组整个程序。有些东西现在可能可以工作,但是您的代码中存在很多不好的做法
  7. 如果我要编写这个程序,所有代码都将位于一个文件中。如果您坚持将它们放在单独的文件中,则需要学习如何使用构造函数以及如何将对象传递给它们。这就是您操作其他类的对象的方式。除非您了解 MVC 模型,此时这对您来说可能有点先进。
<小时/>

更新,OP更新代码

对此进行测试并确保阅读评论,以便您可以看到我做了什么。如果您有任何疑问,请告诉我。

import java.awt.BorderLayout;
import java.awt.Dimension;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.net.URL;
import java.net.URLConnection;
import java.net.URLEncoder;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;

public class main {
public static void main(String[] args) {
System.out.println("Hello World!");
new Display(); // <-- just instantiate
}

}

class Display {

Display disp = this;

public JPanel myPanel; // <--------- Haven't been initialized
public JLabel weatherfield;
private JButton button1;

public Display() { // you need constructor to call init
init();
}

public void init() {
myPanel = new JPanel(new BorderLayout()); // initialize
weatherfield = new JLabel(" "); // initialize
button1 = new JButton("Button"); // initialize
myPanel.add(weatherfield, BorderLayout.CENTER);
myPanel.add(button1, BorderLayout.SOUTH);

button1.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e) {
getandsetWeather(); // <-------- add listener to call getandsetweather
}
});

JFrame frame = new JFrame("Display");
frame.setContentPane(myPanel); // <--------------------- fix 1
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setMinimumSize(new Dimension(480, 234));
frame.pack();
frame.setVisible(true);
}

public void getandsetWeather() {
String editedline = null;
init();
try {
// Construct data
String data = URLEncoder.encode("key1", "UTF-8") + "=" + URLEncoder.encode("value1", "UTF-8");
data += "&" + URLEncoder.encode("key2", "UTF-8") + "=" + URLEncoder.encode("value2", "UTF-8");

// Send data
URL url = new URL("http://api.wunderground.com/api/772a9f2cf6a12db3/geolookup/conditions/q/UK/Chester.json");
URLConnection conn = url.openConnection();
conn.setDoOutput(true);
OutputStreamWriter wr = new OutputStreamWriter(conn.getOutputStream());
wr.write(data);
wr.flush();

// Get the response
BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));

String line;
while ((line = rd.readLine()) != null) {

if( line.contains("\"weather\":")) {
System.out.println(line);
editedline = line.replace("\"weather\":\"", "");
editedline = editedline.replace("\",", "");
System.out.println(editedline);
weatherfield.setText(editedline);
}


}
wr.close();
rd.close();
weatherfield.setText(editedline);
System.out.println(weatherfield.getText());
weatherfield.repaint();
weatherfield.revalidate();
} catch (Exception e) {
System.out.println("Error!" + e);
}


}

}

关于java - JLabel的文本没有改变,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20950452/

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