从文本字段/文本区域进行标记化
我想从文本区域进行标记化,但我无法调用文本区域。输出无法显示。
下面是我的程序:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是您的代码的样子,还是您的代码的复制品?我在这个小片段中看到了一些问题:
如果这些信息没有帮助,您将需要提供比您拥有的更多的信息,更多的信息和代码。
Is that what your code looks like, or is it facsimile of your code? I see a few problems in that small snippet:
If this information doesn't help, you'll need to provide more information than you have, a lot more information and code.