如何在 webstart 应用程序中嵌入 html/css/js 视图
我想在我的 webstart 项目中使用 html/css/js 视图,而不请求所有权限。
我发现我可以使用 java HTTPServer 来处理请求,但我需要一种方法来避免使用真正的套接字,以便 HTTPServer 实例化不会请求某些权限。
您知道有哪些项目可以实现这一目标吗?如果没有,我应该怎么做才能让 HTTPServer 在本地完全工作(不触及边界......)?
编辑:也许 HTTPServer 太多了,我可能只需要一个 HttpHandler ..
I would like to use a html/css/js view in my webstart project without requesting all permissions.
I figured out that I could use the java HTTPServer to process the requests but I need a way to avoid using real sockets, so that the HTTPServer instantiation doesn't ask for some permission.
Do you know any projects that achieve that ? and if not, what should I do to get an HTTPServer completely working locally (without hitting boundaries...) ?
edit: maybe an HTTPServer is too much, I maybe only need a HttpHandler..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您可以使用 HTML 3.2,
JEditorPane
可以渲染它,如图 在这里。If you can live with HTML 3.2,
JEditorPane
can render it, as shown here.