-
wjdc
说明: 问卷调查系统增删改查调查问卷,适合新手的javaweb小项目(Questionnaire system adds or deletes questionnaires, suitable for novice JavaWeb small projects)
- 2020-06-20 06:00:01下载
- 积分:1
-
jQuerymenus
jQuery Menu 暖色、动画、折叠,可作导航菜单,用这几个关键词似乎可以形容这款jQuery动感菜单,示例就是一个很好的应用,连同CSS文件一同拷贝至你的WEB项目中即可使用,本款菜单在兼容性方面做的挺好,来自国外的jQuery网站。(jQuery Menu warm, animation, folded, can be used to navigate the menu, with a few key words seem to describe this dynamic menu jQuery, is a good example of the application, together with a copy of the CSS file to your project, you can use WEB this paragraph menu compatibility has done good, abroad jQuery site.)
- 2014-12-24 18:11:59下载
- 积分:1
-
Apress.Android.Essentials.Jul.2008.pdf
a android mobile documents
- 2009-05-03 09:42:05下载
- 积分:1
-
javaweb视频播放完整代码
javaweb视频播放完整代码,包含数据建表,非常值得一学ckplayer播放器介面CKplayer,其全称为超酷flv播放器,它是一款用于网页上播放视频的软件,支持的格式有:http协议上的flv,f4v,mp4格式,同时支持rtmp视频流格式播放,支持诸如播放/暂停按钮,静音按钮,全屏功能,快进功能。 (注:可更改)
- 2022-04-01 12:10:14下载
- 积分:1
-
liuyanban
一个简单的留言板程序。访问者可以提交留言。后台管理员可以审核修改、删除留言。(A simple message board program. Visitors can submit comments. Administrators can audit background modify, delete messages.)
- 2013-12-30 21:50:47下载
- 积分:1
-
简单的语法扫描仪
语法是哪允许建设,句子使用终端符号按严格规则排列的说明。每种编程语言需要特定形式语法的语法形式。这个项目上全部的 java,Java 让这个项目运行扫描程序,他们也提出了允许其执行的语法。
- 2022-01-28 13:24:31下载
- 积分:1
-
android 播放网络MP3 音乐播放
简单的基本功能,实测可行。 核心代码:package com.sharpandroid.music.activity;import java.io.IOException;import android.app.Activity;import android.os.Bundle;import android.util.Log;import android.view.View;import android.widget.Button;import android.widget.ImageButton;import android.widget.SeekBar;import android.widget.TextView;import com.sharpandroid.music.R;import com.sharpandroid.music.StreamingMediaPlayer;public class MediaPlayer extends Activity { private Button streamButton; private ImageButton playButton; private boolean isPlaying; private TextView playTime; private StreamingMediaPlayer audioStreamer; @Override public void onCreate(Bundle icicle) { super.onCreate(icicle); setContentView(R.layout.main); initControls(); } private void initControls() { playTime=(TextView) findViewById(R.id.playTime); streamButton = (Button) findViewById(R.id.button_stream); streamButton.setOnClickListener(new View.OnClickListener() { public void onClick(View view) { startStreamingAudio(); }}); playButton = (ImageButton) findViewById(R.id.button_play); playButton.setEnabled(false); playButton.setOnClickListener(new View.OnClickListener() { public void onClick(View view) { if (audioStreamer.getMediaPlayer().isPlaying()) { audioStreamer.getMediaPlayer().pause(); playButton.setImageResource(R.drawable.button_play); } else { audioStreamer.getMediaPlayer().start(); audioStreamer.startPlayProgressUpdater(); playButton.setImageResource(R.drawable.button_pause); } isPlaying = !isPlaying; }}); } private void startStreamingAudio() { try { final SeekBar progressBar = (SeekBar) findViewById(R.id.progress_bar); if ( audioStreamer != null) { audioStreamer.interrupt(); } audioStreamer = new StreamingMediaPlayer(this, playButton, streamButton, progressBar,playTime); audioStreamer.startStreaming("http://192.168.64.1/xa.mp3",5208, 216); streamButton.setEnabled(false); } catch (IOException e) { Log.e(getClass().getName(), "读取音乐出错!", e); } }}
- 2014-05-26下载
- 积分:1
-
Spring及依赖注入 入门级实例(文档)
Spring创始人Rod JohnsonSpring简介什么是IoC,依赖注入使用Spring依赖注入示例创建登录示例,编写dao,biz,action为项目添加Spring支持编写Spring配置文件测试注入编写Spring与Struts集成的配置文件在Struts中配置插件在Sping中配置Action面向接口编程注入的使用总结
- 2014-12-13下载
- 积分:1
-
asdqweqwe ^ ^我们^
qweasdqweasdqweasdqweasdqweasdqweasdqweasdqweasdqweasdqweasdqweasdqweasdqweasdqweasdqweasdqweasdqweasdqweasdqweasdqweasdqweasdqweasdqweasdqweasdqweasd
- 2022-07-27 15:31:48下载
- 积分:1
-
android 数字滚动 wheel示例源码下载
android 数字滚动 wheel示例源码下载
- 2014-07-24下载
- 积分:1