我有一个jTextPane设置和一个带radioButtons的面板。我的jTextPane显示我选择的文本文件的内容。我的jTextPane中显示的第3行第4个索引指定了int类型的值。当我点击我的radioButton时,我希望该值增加1.到目前为止,我有以下代码。我尝试了pane.setText(value + 1),但这似乎不起作用。如何更新值并在jTextPane中显示更新的值?我的代码,
private final ActionListener actionListen = new ActionListener() {
for(String line: pane.getText().split("\\n")){
String lineThree = line[3];
int value = lineThree.charAt(4);
if(radioButton.isSelected()){
pane.setText(value+1);
}
}
};