Java 中 CKEditor 的集成

发布于 2024-12-09 12:36:09 字数 137 浏览 0 评论 0原文

我正在尝试将 Netbeans 中的 CKEditor 集成到我的简单 Web 应用程序中。我确实遵循了他们官方网站上给出的文档,但是无法安装。它只显示一个文本区域而不是编辑器。 有关于如何集成的教程吗?或者有人可以帮助我吗?

谢谢, 希尔帕

I am trying to integrate CKEditor in Netbeans to my simple web application. I did follow the documentation given in their official site, but cudnt install. It just shows a textarea instead of the editor.
Is there any tutorial on how to integrate or can anyone help me on this?

Thanks,
Shilpa

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

秋日私语 2024-12-16 12:36:09

看来您缺少加载 css & js 文件。请再次检查&告诉我是否 css &下载了 js 文件并在职的。

在此处输入图像描述

it seems you are missing to load css & js files. please check again & tell me if css & js files is downloaded & working.

enter image description here

忘年祭陌 2024-12-16 12:36:09

您只需从 http://ckeditor.com 获取 ckeditor 文件夹并将其放在 WEB-INF 文件夹之外。 ckeditor jar 文件位于 WEB-INF/lib 文件夹中。如果您使用 jsp 页面,请在页面中包含此标记
<%@ taglib prefix="ckeditor" uri="http://ekeditor.com"%> 并在 html 页面的正文部分创建一个文本区域并将其替换为 .

如果您想用java编写所有工具栏和事件并将它们放入jsp页面中,请使用let脚本并导入这些库。 <% import page="com.ckeditor.EventHandler"%>
如果您想了解更多有关 Java 的示例,请参阅此处 http://svn.ckeditor.com/CKEditor.Java。希望这有帮助。

You just have get ckeditor folder from http://ckeditor.com and put it outside the WEB-INF folder.And keep the ckeditor jar file in WEB-INF/lib folder.If you use jsp page get the include this tag in your page
<%@ taglib prefix="ckeditor" uri="http://ekeditor.com"%> and in the body section of the html page create one textarea and replace it with <ckeditor:replace parameters />.

If you want to write all the toolbars and events in java and get them into jsp page use script lets and import these libraries. <% import page="com.ckeditor.EventHandler"%>.
If you want more examples on java refer here http://svn.ckeditor.com/CKEditor.Java. Hope this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文