JEditor 窗格打印水平滚动条问题
我们使用 Jeditor 窗格来显示 HTML 文本,但是当我们尝试在编辑器窗格上使用水平滚动条打印时,页面的右边缘被切断,有人遇到过吗?有解决这个问题的想法吗?
We use Jeditor pane for displaying HTML text, but when we try to print with horizontal scroll bar on editor pane the right edge of the page is cut off, Did any experience it? Any ideas on fixing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为这是因为视口组件的preferredSize 现在是无限的。您可以尝试手动设置底层视口组件的preferredWidth。
I think this will be because the preferredSize of the viewport component is now unlimited. You could try manually setting the preferredWidth of the underlying viewport component.
我认为发生这种情况是因为打印机页面宽度小于 JEditorPane 的宽度。
你可以尝试这样的事情
http://java-sl.com/JEditorPanePrinter.html
获取页面的宽度,计算为像素并将其设置到您的 JEditorPane。请参阅页面格式。
I think that happens because printer page width is less than your JEditorPane's width.
You can try something like this
http://java-sl.com/JEditorPanePrinter.html
Obtain the page's widht, calculate it in pixels and set it to your JEditorPane. See PageFormat.