Java 中 CKEditor 的集成
我正在尝试将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看来您缺少加载
css & js
文件。请再次检查&告诉我是否css &下载了 js
文件并在职的。it seems you are missing to load
css & js
files. please check again & tell me ifcss & js
files is downloaded & working.您只需从 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.