我有一个名为Parser的类,它获取一些输入并进行一些计算并输出结果。我还有一个jFrame,它有一些文本字段。我误解了如何运行解析器并使用jFrame的输入。我不知道我是否应该在我的Parser类中实现动作监听器?或者我应该在jFrame中导入所有的Parser类方法?我应该在Parser的主程序中运行方法,还是应该在jframe类中使用void运行?
这是我的班级解析器:
public class Parser{
public static List getXKeywords(String Url, int X, String html) throws Exception {
//somemethod with someoutput
}
public static void main(String[] args) throws Exception {
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
SpyBiteDemo Sp = new SpyBiteDemo();
Sp.setVisible(true);
int X=Sp.getKeywordcount();
//this top line is not correct because it can only be done when the jframe jButton1 was clicked
}
});
}
}
这是jFrame;
public class SpyBiteDemo extends javax.swing.JFrame {
/**
* Creates new form SpyBiteDemo
*/
public SpyBiteDemo() {
initComponents();
}
public String getKeywordcount()
{
return jTextField4.getText();
}
//some methods
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
//get the input from the jframe
//feed it to the parser?? how???
String SeedUrl=jTextField1.getText();
Parser P=new Parser();
//I don't have access to methods
because they are static
}
}
这里我试图从jFrame获取keywordcount变量,这是getXKeywords方法中的int X.
答案 0 :(得分:0)
我在我的解析器类中创建了一个构造函数,并在解析器类中包含了一个jframe,如下所示:
public class Parser {
SpyBiteDemo Sp=new SpyBiteDemo();
public Parser(SpyBiteDemo Sp)
{
this.Sp=Sp;
int X = Sp.getXKeywords();
//do whatever
}
并且在jframe类执行的操作中,我调用了我的解析器构造函数类:
public class SpyBiteDemo extends javax.swing.JFrame {
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
Parser P=new Parser(this);
}
}