- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
正如问题所述,我在更新 JScrollPane 内部 JTextArea 的文本时遇到问题。
我能够从 JScrollPane 的类型转换 getView() 中获取文本。但是,我尝试了以下方法来更新 JTextArea。
((JTextArea)(chatWindow.getViewport().getView())).setText("Hello!");
其中 chatWindow 是 JScrollPane。
我已经尝试过这个:
chatWindowInsert.setText(processMessage());
其中 chatWindowInsert 是 JScrollPane 中的 JTextArea
不幸的是,两者都不起作用。
我没有遇到任何异常或挂起。
如有帮助,我们将不胜感激!
这是我的完整代码。如果我已经打破了一百万次编程实践,请非常原谅。
public class ChatterBotClient extends JFrame{
/**
*
*/
private static final long serialVersionUID = 1L;
private static ChatterBotFactory chatterBotFactory;
private static ChatterBotSession chatterBotSession;
private static ChatterBot chatterBot;
public static JScrollPane chatWindow;
public static JTextField userInput;
public static JTextArea chatWindowInsert;
public ChatterBotClient()
{
try{
chatterBotFactory = new ChatterBotFactory();
chatterBot = chatterBotFactory.create(ChatterBotType.CLEVERBOT);
chatterBotSession = chatterBot.createSession();
}catch(Exception e)
{
e.printStackTrace();
System.out.println("Error :O");
JOptionPane.showMessageDialog(null,
"There has been a problem initializing the Bot. Please restart.");
}
initUI();
}
public void initUI()
{
//Define the mainPanel that everything goes into in the JFrame
JPanel mainPanel = new JPanel(new BorderLayout());
//Define the child panels of "mainPanel"
JPanel infoPanel = new JPanel(new FlowLayout());
JPanel chatHistoryPanel = new JPanel(new FlowLayout());
JPanel userInputAndButtonPanel = new JPanel(new FlowLayout());
setTitle("ChatterBot Chat Client");
setSize(600,300);
setResizable(false);
//Define each component
//Set properties of each component
JLabel infoLabel = new JLabel("Welcome to my Cleverbot Client! Please enjoy! :D");
infoLabel.setPreferredSize(new Dimension(550, 20));
infoLabel.setHorizontalTextPosition(SwingConstants.CENTER);
chatWindowInsert = new JTextArea();
chatWindowInsert.setWrapStyleWord(true);
chatWindow = new JScrollPane(chatWindowInsert);
chatWindow.setPreferredSize(new Dimension(500,225));
chatWindow.setPreferredSize(chatWindow.getPreferredSize());
userInput = new JTextField();
userInput.setPreferredSize(new Dimension(250, 25));
JButton enterBtn = new JButton("Send");
enterBtn.setPreferredSize(new Dimension(75, 25));
//Add each component to the required panels
infoPanel.add(infoLabel);
chatHistoryPanel.add(chatWindow);
userInputAndButtonPanel.add(userInput, BorderLayout.CENTER);
userInputAndButtonPanel.add(enterBtn, BorderLayout.EAST);
//Add the child panels to the mainPanel
mainPanel.add(infoPanel, BorderLayout.NORTH);
mainPanel.add(chatHistoryPanel, BorderLayout.CENTER);
mainPanel.add(userInputAndButtonPanel, BorderLayout.SOUTH);
//Now, add the appropriate listeners to your components
enterBtn.addActionListener(new ActionListener(){
@Override
public void actionPerformed(ActionEvent arg0) {
System.out.println("You clicked me! :D");
try {
processMessage();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
System.out.println("Something went wrong when you pressed the button! :O");
}
}
});
userInput.addActionListener(new ActionListener(){
@Override
public void actionPerformed(ActionEvent arg0)
{
chatWindow = new JScrollPane(new JTextArea(processMessage()));
}
});
//Tell the JFrame to display what we've made!
add(mainPanel);
}
public static String processMessage()
{
try {
String completeMessage = chatWindowInsert.getText();
completeMessage.concat("You: " + userInput.getText() + "\n");
String response = chatterBotSession.think(userInput.getText());
completeMessage.concat("Bot: " + response + "\n");
userInput.setText("");
return completeMessage;
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
return "ERROR";
}
}
public static void main(String[] args)
{
SwingUtilities.invokeLater(new Runnable()
{
@Override
public void run()
{
ChatterBotClient cli = new ChatterBotClient();
cli.setVisible(true);
}
});
}
}
最佳答案
您声明:
As the question states, I'm having trouble with updating the text of a JTextArea that is inside of a JScrollPane.
I am able to grab the text from the typecasted getView() of the JScrollPane. However, I have tried the following to update the JTextArea.
((JTextArea)(chatWindow.getViewport().getView())).setText("Hello!");
<小时/><小时/>
为什么要经历所有这些脆弱的代码练习?更简单、更安全、更容易的方法是创建一个类级 JTextArea 实例字段,然后将其显示在 GUI 中的 JScrollPane 中,并且只需在该实例上获取文本或设置文本即可。没有困惑,没有大惊小怪,没有错误。
如果您当前的程序无法做到这一点,那么您还没有告诉我们足够多的信息,因此您需要告诉我们更多信息。
<小时/>编辑
回复您的评论:
have variables referencing both the JTextArea and the JTextField (just to try and figure this out) but even if I change either variable using one of the appropriate ways I described above, the contents inside of the JTextArea still won't change. Unless I'm not understanding what you're saying?
那么这表明虽然您可能正在使用正确的变量,但也许您正在使用错误的引用。也许您正在使用的变量未保存在当前显示的 GUI 中。
但这只不过是 SWAG 工作(愚蠢的疯狂猜测工作)。请不要强制我们猜测 - 编辑您的原始帖子并向我们展示您的代码,最好是 sscce ,向我们展示您如何获取这些变量的句柄以及如何知道它们属于显示的 gui。
<小时/>编辑2
关于您的最新代码。让我们看看这一行:
public static JTextArea chatWindowInsert;
编辑3
我现在看到,您将一个完全不同的 JTextField 放入 JScrollPane 中,从未将其放入 GUI 中的任何位置,并在所有位置按下按钮来完成所有这些操作!?
userInput.addActionListener(new ActionListener(){
@Override
public void actionPerformed(ActionEvent arg0)
{
chatWindow = new JScrollPane(new JTextArea(processMessage()));
}
});
建议:
关于java - 如何更新 JScrollPane 内 JTextArea 的文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20755234/
我有一个 JScrollPane,它的内容 Pane 有一个 JPanel。我向该 JPanel 添加了较小的 JPanel,正如预期的那样,如果我添加太多 JPanel,将会出现一个垂直滚动条。 问
我正在尝试在另一个 JScrollPane 中添加一个 JScrollPane。内部 JScrollPane 只会水平滚动,外部只会垂直滚动。 在这张图中,您可以看到添加 mainPanel 时水平滚
我正在尝试创建一个带有滚动条的容器,并且容器内部有两个内部面板。顶部内面板内还有另一个 JScrollPane。 但目前我遇到的问题是,当我的顶部内面板太长(宽度)时,顶部内面板内的滚动条被禁用,我只
你们能让我知道禁用水平滚动条的最佳方法是什么吗? 我有 宽度:100% 和 高度:280px 的 div。当我们有很长的连续文本(没有任何空格)时,我们会显示一个水平滚动条。 顺便说一句,我正在使用
我注意到这个问题主要出现在 OS 10.5.8 上的 Firefox 3.6.6 上,Safari 上偶尔也会出现这种情况(准备好惊讶的表情 - IE 实际上每次都工作正常 - 什么?!)。 我的网址
所以我有一堆JTable。每个JTable 都位于JScrollPane 内。然后,我将每个 JScrollPane 添加到 JPanel 中。然后,我将此 JPanel 添加到 JScrollPan
我在 JScrollPane 上放置了多个 JPanel。现在我有了它,所以如果你的鼠标在框架之外,那么它就不会拖动 JPanels。 当我在一个方向上移动组件时,我需要让它滚动。 (例如,如果我
有什么区别 JScrollPane.getViewportBorderBounds() and JScrollPane.getViewport() and JscrollPane.getVisible
此应用程序适用于触摸屏。我只需要仅当用户触摸 JScrollPane 区域时 JScrollPane 的滚动条可见。 我是 GUI 和 swing 的新手。这会很有帮助,我不明白是什么,或者如果在其他
出于布局目的,我需要在滚动内容底部和容器底部之间放置 15px 的空间:div class="scroll-pane" . 造型容器 .scroll-pane { padding-bottom:15p
我需要一个可以显示很多图像的程序,并且我需要一个可以滚动的窗口。我阅读了文档并在论坛上进行了搜索,但仍然没有成功。我尝试使用 JScrollPane 和 JFrame,如下所示。 JScrollPan
我今天遇到了这个新事物,但我不知道为什么。例如,当我想在面板中显示某些内容时,我只需将其添加到面板即可;但为什么我不能直接添加表格到滚动 Pane ,为什么我必须调用 setviewportview(
我今天遇到了这个新事物,我不知道为什么。例如,当我想在面板中显示某些内容时,我只需将其添加到面板即可;但是为什么我不能直接添加表格到滚动 Pane ,为什么我必须调用 setviewportview(
我一直在尝试缩小 JScrollPane 的内容宽度,例如。我已将 HorizontalScrollBarPolicy 设置为 NEVER,但这最终导致没有 ScrollBar 出现并且内容不再显
所以,在下面的代码中,我在左侧有一个 JTextArea。右上角的 JScrollPane 看起来不错。使用相同的代码,我还在右下侧添加了一个 JScrollPane,但是尽管代码相同,但保存了首选大
我在 div 上使用 JScrollPane 来滚动它。 div 包含一个自写的 javascript 代码,它从我的 tumblr 提要中获取最后几篇文章。但是,即使滚动 Pane 显示正常,但由于
请看下面的代码块 import java.awt.Color; import java.awt.Dimension; import javax.swing.JFrame; import javax.s
我在 Swing 中制作了一个简单的 GUI,其中在 JScrollPane 内、JSPlitPane 内、JPanel 内、....在 JFrame 内有一个大 JPanel(显示大 Buffere
我有一个带滚动条的 JPanel,我想向它添加很多 JLabel。但是滚动条不起作用。我无法使用滚动条,即使面板已满,它也不会滚动。这是我的代码: import java.awt.*; import
我正在尝试在 JScrollPane 中添加 2 个图像。第一个图像是背景,第二个图像与第一个图像重叠。当我运行我的程序时,问题只显示第二张图像! 请帮忙 ImageIcon ii = new Ima
我是一名优秀的程序员,十分优秀!