我想在随附的github-pages页面中嵌入一个java applet(存储在git存储库中)。这可能吗?
答案 0 :(得分:3)
是
虽然可以通过简单的降价界面生成GitHub页面,但分支中的任何文件都将作为gh-pages-site的一部分提供。
这意味着您可以在GitHub Pages站点上托管客户端脚本,如Java-Applets或JS。
托管Java applet:
使用首选方法like this将applet嵌入到您的一个html页面中,或者这样:
*Assuming foo.jar and Bar.class are your file and applet-class*
<embed
id="SomeName"
type="application/x-java-applet;version=1.6"
width="999" height="999"
archive="foo.jar"
code="Bar.class"
pluginspage="http://java.com/download/"
myParam="YourParams" />
提交/推送更改并等待(有时gh页面不会立即更新)。