从文本字段/文本区域进行标记化

发布于 2024-12-05 15:12:54 字数 417 浏览 0 评论 0原文

我想从文本区域进行标记化,但我无法调用文本区域。输出无法显示。

下面是我的程序:

static JTextArea Report_tf;

public static void main(String[] args) throws IOException
      {
      new Form1(); //call form

//tokenization

  String speech = Report_tf.getText();
  Report_tf.setText(speech);

  StringTokenizer st = new StringTokenizer(speech);
  while (st.hasMoreTokens()) 
    System.out.println(st.nextToken());
}

i want to do tokenize from textarea but i cannot call the textarea. the output cannot diplay.

Below is my program:

static JTextArea Report_tf;

public static void main(String[] args) throws IOException
      {
      new Form1(); //call form

//tokenization

  String speech = Report_tf.getText();
  Report_tf.setText(speech);

  StringTokenizer st = new StringTokenizer(speech);
  while (st.hasMoreTokens()) 
    System.out.println(st.nextToken());
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

江南烟雨〆相思醉 2024-12-12 15:12:54

这是您的代码的样子,还是您的代码的复制品?我在这个小片段中看到了一些问题:

  • 没有理由使用静态 JtextArea 字段,因为这会破坏 OOP。使其成为该类的实例变量(我猜它是 Form1 类)。
  • 您在哪里构造 JTextArea 变量?正如所写,它似乎是 null,如果您尝试使用它,将会抛出 NullPointerException。
  • 如果您尝试按照您的指示从主方法中的 JTextArea 中提取文本,那么您将在程序启动时、在用户有时间将数据输入 JTextArea 之前执行此操作这没有什么意义。更好的方法是获取响应事件的文本,例如 JButton 的 ActionListener 内部的事件。这样,用户可以输入文本,然后在完成后按下按钮,您的字段将有要提取的文本。
  • 同样,所有这些都不应该在 main 或任何静态方法中完成,而应该在非静态方法中完成。

如果这些信息没有帮助,您将需要提供比您拥有的更多的信息,更多的信息和代码。

Is that what your code looks like, or is it facsimile of your code? I see a few problems in that small snippet:

  • There's no reason to have a static JtextArea field as this breaks OOP. Make it an instance variable of the class (I guess it's the Form1 class).
  • Where do you construct your JTextArea variable? As written it appears to be null and will throw a NullPointerException if you try to use it.
  • If you're trying to extract your text from the JTextArea from the main method as you indicate, you're doing this at program start up, before the user has had any time to enter data into the JTextArea which makes little sense. Much better is to get the text in response to an event such as inside of a JButton's ActionListener. This way, the user can enter text and then push the button when done, and your field will have text to extract.
  • Again, all of this should be not be done in the main or any static method but in a non-static method.

If this information doesn't help, you'll need to provide more information than you have, a lot more information and code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文