JTextArea 获取整行
我怎样才能从 JTA 获得所选线路?
How can I get chosen line from JTA ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我怎样才能从 JTA 获得所选线路?
How can I get chosen line from JTA ?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
我想你可以使用 getLineStartOffset(int line) 和 getLineEndOffset(int line) 从 getText() 返回的字符串中子串出特定行
如果你的意思是你想知道用户选择了什么(使用鼠标/键盘):
getSelectedText() 应该给你这个。
I suppose you can use getLineStartOffset(int line), and getLineEndOffset(int line) to substring out a particular line from the string returned from getText()
If you mean that you want to know what the user has selected (using the mouse/keyboard):
getSelectedText() should give you that.
为什么不将这些行分成标记。那么如果你知道你想要的行号,你可以通过字符串数组访问它
Why not break the lines up into tokens. then if you know the line number you want, you can just access it via an array of Strings