}
//如果开始位有变化,即找到
if(findtxton!=-1)
{
//设置结束位
findtxtoff=findtxton+findtxt.length();
}
else
{
//否则显示没有找到
findtxtoff=-1;
JOptionPane.showMessageDialog(null,"没有找到");
}
//将找到部分进行选择
txt.select(findtxton,findtxtoff);
}
}
}
public class TextEdit
{
//主函数
public static void main(String args[])
{
//声明设置主窗体
MyMainFrame f=new MyMainFrame();
f.setSize(640,480);
f.setTitle("文本编辑器");
//显示主窗体
f.setVisible(true);
}
}
/*
JTextArea的自动换行方面的问题
--------------------------------------------------------------------------------
如果水平滚动条设置为JSctollpane.
,则添加了这种JSctollpane对象的JTextArea将具备换行功能
是这样吗?
--------------------------------------------------------------------------------
JTextArea.setLineWrap(boolean wrap)
--------------------------------------------------------------------------------
JTextArea.setLineWrap(boolean wrap)//一般的换行。
JTextArea.setWrapStyleWorld(boolean world)//以单词边缘为界限分行
*/