-
仿淘宝商品详情下拉换页
实现类似淘宝的商品详情,下拉换页显示图文详情,产品参数等。可以借鉴一下
- 2022-08-21 21:03:57下载
- 积分:1
-
网上书店%28struts%2Bhibernate%2Bcss%2Bmysql%29
能使先后台增删改查完整内容
myeclipse+mysql+jsp(myeclipse+mysql+jsp
good good good)
- 2020-06-24 17:20:01下载
- 积分:1
-
TypeScript (Dictionary Map )for ES5
java 2 typescript 代码生成器生成,
用array实现Dictionary Map
- 2022-08-19 00:57:50下载
- 积分:1
-
code
水平竖直线交点就是输入些水平线段和竖直线段的坐标(文件输入)
然后输出几个交点(The level of vertical lines is the intersection of some level of input the coordinates of line segments and vertical segments (file type) and then the output of several intersection)
- 2010-01-24 23:29:33下载
- 积分:1
-
无损音乐下载器
无损音乐下载器V3.1.6829.41209一键试听下载(无需付费,动态歌词,MV)(Lossless music downloader V3.1.6829.41209 one button audition download (no need to pay, dynamic lyrics, MV))
- 2018-10-07 15:03:59下载
- 积分:1
-
MESDemo
该程序是一个模拟MES下达订单的系统,可以定时刷新各个工位处的所需要的订单信息,下达至现场生产系统中,对于没有MES的系统,模拟生产订单是一个很好的选择。
- 2022-08-05 09:46:38下载
- 积分:1
-
java version of the client and server communications, support requirements java...
java版客户端与服务器通信,要求支持java,javac-java version of the client and server communications, support requirements java and javac
- 2022-11-06 03:05:05下载
- 积分:1
-
java课程设计
说明: Java课程设计-坦克大战,包含源码和完整的文档。(Java Course Design-Battle of Tanks, including source code and documentation.)
- 2019-12-09 09:11:47下载
- 积分:1
-
新建Frame框架
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.border.*;
public class Test extends JFrame
{
public Test()
{
setTitle("Test");
setSize(400,200);
}
请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-08-09 09:35:25下载
- 积分:1
-
android 静态壁纸实例源码下载
一款还不错的静态壁纸代码 核心代码:package com.example.wallpaperchange;import android.os.Bundle;import android.app.Activity;import android.app.AlarmManager;import android.app.PendingIntent;import android.app.Service;import android.content.Intent;import android.view.View;import android.view.View.OnClickListener;import android.widget.Button;import android.widget.Toast; public class MainActivity extends Activity { AlarmManager aManager; Button start,stop; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); start = (Button)findViewById(R.id.start); stop = (Button)findViewById(R.id.stop); aManager = (AlarmManager)getSystemService(Service.ALARM_SERVICE); //指定ChangeService组件 Intent intent = new Intent(MainActivity.this,ChangeService.class); //创建PendingIntent对象 final PendingIntent pi = PendingIntent.getService( MainActivity.this, 0, intent, 0); start.setOnClickListener(new OnClickListener() { public void onClick(View v) { // TODO Auto-generated method stub aManager.setRepeating(AlarmManager.RTC_WAKEUP, 0, 5000, pi); start.setEnabled(false); stop.setEnabled(true); Toast.makeText(MainActivity.this, "壁纸定时更换启动成功", 5000).show(); } }); stop.setOnClickListener(new OnClickListener() { public void onClick(View v) { // TODO Auto-generated method stub start.setEnabled(true); stop.setEnabled(false); aManager.cancel(pi); } }); } }
- 2014-06-03下载
- 积分:1