登录
首页 » Java » plupload

plupload

于 2017-04-13 发布 文件大小:384KB
0 211
下载积分: 1 下载次数: 1

代码说明:

  Plupload是一个Web浏览器上的界面友好的文件上传模块,可显示上传进度、图像自动缩略和上传分块。可同时上传多个文件。(Plupload is a Web browser interface friendly file upload module, can display the progress of the upload, automatic image thumbnail and upload block. Can upload multiple files at the same time.)

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 下载 Java 中的文件
    Java 应用程序下载文件的源代码!应用程序很小,想要了解一位朋友是值得一看
    2022-01-30 14:15:09下载
    积分:1
  • C#高校物品闲置网(系统)
    应用背景本网站用于对高校闲置物品的处理,如拍卖放置及闲置物品的实时浏览,另外有登陆注册功能模块,游客注册成为会员并登陆后就可以进行相关的操作,更多功能请看详解。关键技术本网站所用到的技术有两层架构,所用工具是VS2010+MS SQL2005
    2022-02-21 08:52:09下载
    积分:1
  • android短信功能
    android短信功能 核心代码:package cn.edu.siso;import java.util.ArrayList;import java.util.HashMap;import java.util.Iterator;import java.util.List;import javax.xml.parsers.SAXParserFactory;import org.xml.sax.InputSource;import org.xml.sax.XMLReader;import android.app.ListActivity;import android.content.Intent;import android.os.Bundle;import android.view.KeyEvent;import android.view.View;import android.view.Window;import android.widget.Button;import android.widget.ListView;import android.widget.SimpleAdapter;import cn.edu.ContentProvide.Diary.DiaryColumns;import cn.edu.Info.MyInfo;import cn.edu.MyContentHandler.MyContentHandler;import cn.edu.siso.WareHouselistview.SMSBsharpturn;import cn.edu.siso.WareHouselistview.SMSFriendTab;import cn.edu.siso.WareHouselistview.SMSHavefanTab;import cn.edu.siso.WareHouselistview.SMSLoverTab;import cn.edu.siso.WareHouselistview.SMSSchooljoke;import cn.edu.siso.WareHouselistview.SMSapologize;import cn.edu.siso.WareHouselistview.SMShumorjokes;import cn.edu.siso.WareHouselistview.SMSlovewords;import cn.edu.siso.WareHouselistview.SMSmylove;import cn.edu.siso.WareHouselistview.SMSplayful;public class WareHouseActivity extends ListActivity { /** Called when the activity is first created. */ private List mp3Infos=null; private ListView listview; private Button back,updata; public static final String[] PROJECTION = new String[] { DiaryColumns._ID,DiaryColumns.TITLE, DiaryColumns.CREATED }; private Touch touch=new Touch(); @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_NO_TITLE); setContentView(R.layout.warehouse); listview=(ListView) findViewById(android.R.id.list); listview.setScrollingCacheEnabled(false); ShowListView(); back=(Button) findViewById(R.id.back); updata=(Button) findViewById(R.id.updata); back.setOnClickListener(new backlistener()); updata.setOnClickListener(new updatalistener()); back.setOnTouchListener(touch); updata.setOnTouchListener(touch); } private SimpleAdapter budildSimpleAdapter(List mp3Infos){ List list=new ArrayList(); for (Iterator iterator = mp3Infos.iterator(); iterator.hasNext();) { MyInfo mp3Info = (MyInfo) iterator.next(); HashMap map=new HashMap(); map.put("name", mp3Info.getName()); map.put("listimageview", R.drawable.image); list.add(map); } SimpleAdapter listadapter=new SimpleAdapter(this, list, R.layout.textview, new String[]{"name","listimageview"}, new int[]{R.id.houseText,R.id.listimageview}); return listadapter ; } private void ShowListView(){ mp3Infos=pares(R.raw.information); SimpleAdapter listadapter= budildSimpleAdapter(mp3Infos); setListAdapter(listadapter); } public List pares(Object xmlname){ List info=new ArrayList(); try { SAXParserFactory factory=SAXParserFactory.newInstance(); XMLReader reader=factory.newSAXParser().getXMLReader(); MyContentHandler mycontenthandler=new MyContentHandler(info); reader.setContentHandler(mycontenthandler); reader.parse(new InputSource(getResources().openRawResource((Integer) xmlname))); } catch (Exception e) { e.printStackTrace(); } return info; } @Override protected void onListItemClick(ListView l, View v, int position, long id) { // TODO Auto-generated method stub //MyInfo myinfo=mp3Infos.get(position); //System.out.println("myinfo-------" myinfo); Intent intent =new Intent(); switch(position){ case 0: intent.setClass(WareHouseActivity.this, SMSapologize.class); startActivity(intent); break; case 1: intent.setClass(WareHouseActivity.this, SMSmylove.class); startActivity(intent); break; case 2: intent.setClass(WareHouseActivity.this, SMSlovewords.class); startActivity(intent); break; case 3: intent.setClass(WareHouseActivity.this, SMSHavefanTab.class); startActivity(intent); break; case 4: intent.setClass(WareHouseActivity.this, SMSLoverTab.class); startActivity(intent); break; case 5: intent.setClass(WareHouseActivity.this, SMSplayful.class); startActivity(intent); break; case 6: intent.setClass(WareHouseActivity.this, SMSBsharpturn.class); startActivity(intent); break; case 7: intent.setClass(WareHouseActivity.this, SMShumorjokes.class); startActivity(intent); break; case 8: intent.setClass(WareHouseActivity.this, SMSFriendTab.class); startActivity(intent); break; case 9: intent.setClass(WareHouseActivity.this, SMSSchooljoke.class); startActivity(intent); break; case 10: intent.setClass(WareHouseActivity.this, SMSSchooljoke.class); startActivity(intent); break; case 11: intent.setClass(WareHouseActivity.this, SMSSchooljoke.class); startActivity(intent); break; case 12: intent.setClass(WareHouseActivity.this, SMSSchooljoke.class); startActivity(intent); break; case 13: intent.setClass(WareHouseActivity.this, SMSSchooljoke.class); startActivity(intent); break; case 14: intent.setClass(WareHouseActivity.this, SMSSchooljoke.class); startActivity(intent); break; case 15: intent.setClass(WareHouseActivity.this, SMSSchooljoke.class); startActivity(intent); break; case 16: intent.setClass(WareHouseActivity.this, SMSSchooljoke.class); startActivity(intent); break; } super.onListItemClick(l, v, position, id); } @Override public boolean onKeyDown(int keyCode, KeyEvent event) { // TODO Auto-generated method stub if(keyCode==KeyEvent.KEYCODE_BACK&&event.getRepeatCount()==0){ //需要处理 Intent intent =new Intent(); intent.setClass(WareHouseActivity.this, InformationActivityActivity.class); startActivity(intent); finish(); } return false; } class backlistener implements Button.OnClickListener{ @Override public void onClick(View arg0) { // TODO Auto-generated method stub Intent intent = new Intent(); intent.setClass(WareHouseActivity.this,InformationActivityActivity.class); startActivity(intent); finish(); }} class updatalistener implements Button.OnClickListener{ @Override public void onClick(View v) { ShowListView(); }}}
    2014-11-09下载
    积分:1
  • efreawgfvsdgvagegvdgvxbxvx
    dgfgvxzgbvdzbswgewrq3rawefczscvxcxndgsdgszgsgsGsfgafwtfewgdfvxcvxcbxhzdgsgseaFadwafegvsefehfiuhuwfhefjsnfjdsfndz cndks fkjdzfnjsfuwehfojnfjdzfn dzjcsnfuhewuhdoiqwdjakndjsndmszdknwoiqidnjwadsndmsz dasndowqhdqwo
    2022-07-11 17:53:26下载
    积分:1
  • 在线考试系统
    简易的在线考试系统,实现教师指定简易的出题规则,自动生成题库,学生在线考试,自动审批试卷得出成绩。学生可以申请重考
    2022-01-26 00:04:42下载
    积分:1
  • JQuery时间插件date
    随着网页技术突飞猛进,客户需求量增大,对于源代码的需求也随之增大,而JQuery时间插件date为网页设计和编程将会提供更加准确可靠地技术,有利于广大程序员对该部分的更深认识,对此上传的插件更加完善
    2022-03-02 07:23:37下载
    积分:1
  • PHP-residence0.61 宾馆酒店网站系统预装网页
    PHP-residence宾馆酒店网站系统预装网页、新闻文章、图片展示、在线订酒店房、招聘等功能模块,预设了宾馆酒店网站常用的栏目、内容,具有多款精美的模板风格。...会打字就能日常维护网站;模块化构架,可随时安装卸载模块;免费版可用于非商业用途,免费下载。【软件特点】1.预制好宾馆酒店网站所需栏目,上传了测试内容,初次使用更直观了解2.可视化的鼠标拖曳排版,插件、边框、菜单灵活组合和任意定位3.
    2022-01-31 19:20:47下载
    积分:1
  • Bankers-algorithm
    银行家算法是一种最有代表性的避免死锁的算法。又被称为“资源分配拒绝”法(Bankers algorithm is one of the most representative of the algorithm to avoid deadlock. Also known as "resource allocation denial" method)
    2014-07-27 16:10:15下载
    积分:1
  • webrtc视频会议demo
    基于webrtc开发的一个视频会议系统,   采用ptop呼叫方式通信,js,视频界面html5
    2022-04-22 19:00:35下载
    积分:1
  • fzldj
    非主流音乐整站,php编程学习源码,web网站制作参考资料。(Non mainstream music station, PHP learning programming source code, web web references.)
    2013-12-20 14:20:52下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载