-
empty
keyishuoshihenlihaidesuanfale
- 2020-06-23 11:00:02下载
- 积分:1
-
javaweb 电子商城
电子商城系统,由jsp+mybatis+ajax+spring实现,数据库为MySQl-E-Mall system jsp+ Ajax+ Spring realize, for the MySQL database
- 2022-03-15 12:28:21下载
- 积分:1
-
主要来源网上以及作者本人收集的资料,如果
网友们有什么好的文章或者想法,请发email给我...
主要来源网上以及作者本人收集的资料,如果
网友们有什么好的文章或者想法,请发email给我-The main source of the Internet as well as the author of information collected, if users have any good article or ideas, please send an email to me
- 2022-01-26 05:40:13下载
- 积分:1
-
附带很好的Spring data jpa测试demo
一个整合了jpa的dome 完整的 可运行
- 2022-03-12 01:41:14下载
- 积分:1
-
android 侧滑菜单 实例源码
android 侧滑菜单 实例源码
- 2014-05-30下载
- 积分: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
-
Android 房产税计算App
资源描述Java所写的Android小工具,提供UI界面,可以根据输入的不同数值计算出需要缴纳的房产税,源代码可以在eclipse上编译运行。
- 2023-02-15 10:50:03下载
- 积分:1
-
RouteSpecificPool
A connection sub-pool for a specific route, used by {@link ConnPoolByRoute}. The methods in this class are unsynchronized. It is expected that the containing pool takes care of synchronization.
- 2013-12-03 13:43:19下载
- 积分:1
-
一个教您如何将这些彩色对象绕着坐标轴旋转的opengl程序,使得我们能够非常精确地旋转对象。效果相当不错!...
一个教您如何将这些彩色对象绕着坐标轴旋转的opengl程序,使得我们能够非常精确地旋转对象。效果相当不错!-one teaches you how these objects around the color coordinates rotating opengl procedures, allowed us to be very precise to rotate objects. The results are pretty good!
- 2023-08-02 14:00:04下载
- 积分:1
-
android h263硬编码rtp打包
说明:该android代码h263硬编码rtp打包发送服务器,pc端建立sdp文件用vlc播放1、服务器ip为192.168.1.62、android手机ip为192.168.1.17,在小米1s测试通过,像三星等手机不支持h263编码3、android端修改net.config包下的Config类的url4、pc端用已有的sdp文件播放,修改ip为手机ip
- 2015-05-19下载
- 积分:1