Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须为我的应用程序制作一个输出控制台。所有日志记录(用户消息)都将显示在该控制台上。我已经TextArea为此目的使用了TextArea.append()方法来不断更新控制台。此外,我正在线程中编写控制台以保持 UI 更新。
TextArea
TextArea.append()
当数据很小时,它可以正常工作。当控制台上的数据变大时,就会出现问题;屏幕开始挂起。
请建议我应该怎么做才能克服这个问题。
与其他控制台行为(例如 eclipse、命令行等)类似,找出您的工作阈值大小。一旦达到该大小,请从头开始截断内容,然后在最后添加新内容。