如何重新编译WEB-INF下的red5代码?
我正在编辑 red5 的开源代码。但我不知道如何重新编译它。我在cmd中使用javax但无法运行。 我应该怎么办?
i have editing a opensource code of red5. But i don't know how to recompile it. I use javax at cmd but can't run.
What should I do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要编译 Red5,您需要安装 Apache Ant 并在主 Red5 源中运行
ant
build.xml
文件所在的目录,或者将源代码导入 Eclipse 并在那里构建。如果您想修改源代码,后一种方法可能要好得多。 YouTube 上提供了一些由 Dominick Accattato 制作的视频教程。他谈到了从其中之一的源代码构建 Red5。
To compile Red5 you need to install Apache Ant and run
ant
in the main Red5 source directory where thebuild.xml
file is located, or import the sources into Eclipse and build it there.The latter method is probably much better if you want to modify the source code. There're some video tutorials made by Dominick Accattato available on YouTube. He talks about building Red5 from sources in one of them.