我正在从外部.txt文件中读取文本到jframe上的文本区域。 在文本文件中,我有“姓名:安德鲁”。
当.txt文本文件被读入jframe中的textArea时,我想在文本区域中获取“Andrew”,然后使用文件编写器,我想创建一个新的.txt文本,其名称来自于文本区域“Andrew”作为新.txt文件的名称。
我尝试过使用
If (JTextField1.getText.contains("Name")){
...
}
但这不起作用。
答案 0 :(得分:0)
if (JTextField1.getText().contains("Name")) {
string name = JTextField1.getText().split(": ")[1];
}