- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我们按下按钮时,我向 JFrame 添加了一个网页(网页在同一框架中打开)。效果很好。但我想向其中添加一个scrollPane,但是当我添加 JScrollPane jsp = new JScrollPane(jep);
(jep = JEditorPane) 时,网页不会显示。
如果需要,我会在此页面添加更多信息。
代码(主要部分)
JEditorPane jep = new JEditorPane();
jep.setEditable(false);
try {
jep.setPage("xxxxxxxxxxxxx");
} catch (IOException error) {
jep.setContentType("text/html");
}
jep.setBounds(100, 50, 150, 100);
JScrollPane jsp = new JScrollPane(jep);
add(jsp)
add(jep);
谢谢~3751_Creator
最佳答案
原因是这一行:
jep.setBounds(100, 50, 150, 100);
您已经设置了 JEditorPane
的边界,但现在您已将该 JEditorPane
添加到 JScrollPane
中。因此,您应该为 JScrollPane
使用 setbounds
,而不是为 JEditorPane
设置边界。
关于java - 将scrollPane添加到EditorPane(网页),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17931916/
这是一个困扰我多年的问题。用户正在滚动浏览 JEditorPane 中包含的文本文档,而 JEditorPane 又包含在 JScrollPane 中。用户使用更改文本的按钮执行某些功能(它突出显示文
我想使用 JeditorPane 在 Jframe 上显示 Java 网页我使用的代码: edPane.setContentType("text/html"); String data="\
JEditorPane editorPane; editorPane.addHyperlinkListener(...) 如果 editorPane 设置为 setEditable(true), 不会
由于某种原因,我的 HTML 页面没有 100% 显示在屏幕上,而它应该在屏幕上显示,这对我来说似乎是一个计时问题。如果我删除滚动 Pane 并仅使用 EditorPane,它就可以正常工作。 我应该
我是一名优秀的程序员,十分优秀!