码迷,mamicode.com
首页 >  
搜索关键字:1024 applet    ( 647个结果
e554. 在浏览器状态栏中显示信息
// See also e551 精简的Applet applet.showStatus("Your Message Here"); Related Examples ...
分类:其他好文   时间:2018-09-02 23:56:47    阅读次数:207
e557. 在Applet中显示图片
See also e551 精简的Applet. ...
分类:移动开发   时间:2018-09-02 23:50:12    阅读次数:240
e552. 取Applet的参数
An applet can be configured through the use of applet parameters. For example, the contents for a news ticker applet could be specified through an app ...
分类:移动开发   时间:2018-09-02 21:54:51    阅读次数:238
e558. 在Applet中多图片交互显示
This is the simplest applet to animate an array of images. In practice, you should use double-buffering (which this example does not use) to eliminate ...
分类:移动开发   时间:2018-09-02 21:53:02    阅读次数:202
e551. 精简的Applet
Every applet must subclass Applet. Here is an example of an HTML file that will cause the browser to load and start the applet: ...
分类:移动开发   时间:2018-09-02 21:47:45    阅读次数:230
e553. 作为浏览器访问URL
// See also e551 精简的Applet try { URL url = new URL(getDocumentBase(), "http://hostname.com/page.html"); applet.getAppletContext().showDocument(url); }... ...
分类:Web程序   时间:2018-09-02 21:46:27    阅读次数:177
e556. 在程序中播放音频
try { URL url = new URL("http://hostname/audio.au"); AudioClip ac = Applet.newAudioClip(url); ac.play(); } catch (MalformedURLException e) { } Related... ...
分类:其他好文   时间:2018-09-02 21:45:37    阅读次数:177
e555. 在Applet中播放音频
// See also e551 精简的Applet public void init() { // Load audio clip AudioClip ac = getAudioClip(getDocumentBase(), "http://hostname.com/audio.au"); // ... ...
分类:移动开发   时间:2018-09-02 21:42:58    阅读次数:208
201771010142 张燕《面向对象程序设计(java)》第一周学习总结
201771010142 张燕《面向对象程序设计(java)》第一周学习总结 第一部分:课程准备部分 填写课程学习 平台注册账号, 平台名称 注册账号 博客园:www.cnblogs.com 今生是第一次 程序设计评测:https://pintia.cn/ 2712180839@qq.com 代码托 ...
分类:编程语言   时间:2018-09-02 20:12:24    阅读次数:207
【tomcat】servlet原理及其生命周期
1.什么是servlet? Servlet(Servlet Applet),全称Java Servlet,是用Java编写的服务器端程序。而这些Servlet都要实现Servlet这个接口。其主要功能在于交互式的浏览和修改数据,生成动态Web内容。Servlet运行于支持Java的应用服务器中。 2 ...
分类:其他好文   时间:2018-08-29 01:16:19    阅读次数:148
647条   上一页 1 ... 12 13 14 15 16 ... 65 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!