我想从textarea做tokenize但我不能调用textarea。输出无法显示。
以下是我的计划:
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());
}
答案 0 :(得分:2)
这是您的代码的样子,还是代码的传真?我在那个小片段中看到了一些问题:
如果此信息无效,您需要提供比您更多的信息,更多信息和代码。