联合开发网   搜索   要求与建议
                登陆    注册
排序按匹配   按投票   按下载次数   按上传日期
按分类查找Java编程(8161) 其他(4728) android开发(3536) collect(1952) 人工智能/神经网络/深度学习(1411) 数值算法/人工智能(1198) 编辑器/阅读器(1100) 网络编程(905) WEB开发(880) 浏览器(867) 数学计算(816) Windows编程(756) 自然语言处理(688) 音频处理(671) 游戏(619) 其他小程序(541) 编译器/解释器(538) 内容生成(515) 网络编程(509) 数据库系统(481) JavaScript/JQuery(478) 多媒体编程(471) 前端开发(454) 模式识别(视觉/语音等)(453) 微服务(448) 代码编辑器(439) 中间件编程(395) 大数据(383) 代理服务器(354) J2ME(350) 单片机开发(342) 自动编程(341) 云计算(324) FaaS/Serverless(324) ICQ/即时通讯(318) 加密解密(314) 图形图象(297) 金融证券系统(292) 搜索引擎(284) 通讯编程(283) 调试/Bug(275) 图形图像处理(274) C/C++基础(259) Web服务器(257) 编程语言基础(251) 特征抽取(245) 流媒体/Mpeg4/MP4(230) 云数据库/云存储(224) Ftp服务器(217) 嵌入式/单片机/硬件编程(214) Java书籍(214) 生物医药技术(210) 聚类算法(199) 界面编程(196) GPS编程(191) SQL Server(187) 虚拟/增强现实-VR/AR(187) 工具库(187) 云原生工具(166) CA认证(161) Email客户端(157) 硬件设计(154) 处理器开发(146) 智慧办公(144) xml/soap/webservice(143) 物联网(143) Websocket编程(138) GIS/地图编程(137) Telnet客户端/Shell(132) 托管/部署(131) 开发工具(131) Docker(127) matlab编程(124) 操作系统开发(123) 直播(123) 微信小程序(121) Ajax(120) 构建工具(119) 测试(117) 文章/文档(115) iPhone/iOS(115) 物理/力学计算(112) Python编程(111) 聊天室(108) 企业管理(107) OA办公系统(107) 数据可视化(106) Java库(105) 多国语言处理(102) TCP/IP协议栈(102) 视频/语音聊天(102) 区块链开发(102) Redis(100) 视频会议(98) 系统/网络安全(97) 加密货币(95) 数据采集/爬虫(95) 自动驾驶(93) wifi(93) Oracle数据库(90) 
按平台查找All Java(52917) 

[大数据] TodayAndHistory

历史上的今天,可以查看制定任意一天,查看那一天在历史上有没有那么重大的时间发生,练手项目,api数据来自于聚合数据
Today in history, you can check any day of formulation to see if there is such a significant time in history. The training project and api data come from aggregate data (2017-07-04, Java, 11309KB, 下载0次)

http://www.pudn.com/Download/item/id/1687108362789061.html

[] windlx模拟器

操作系统模拟器操作系统模拟器操作系统模拟器操作系统模拟器 (2022-10-28, Java, 329KB, 下载1次)

http://www.pudn.com/Download/item/id/1666967160812513.html

[android开发] PS2模拟器安卓

模拟器,安卓,PS2模拟器,游戏模拟器。 (2022-06-02, Java, 12084KB, 下载0次)

http://www.pudn.com/Download/item/id/1654142160162493.html

[界面编程] LoginFilter.java

登录拦截器登录拦截器登录拦截器登录拦截器
login filter (2015-03-17, Java, 2KB, 下载1次)

http://www.pudn.com/Download/item/id/1426602599977482.html

[Windows编程] PinProgress_20836

实现饼状进度条(Pie Progress),点击饼状进度条,进度条里面的大头针(Pin)会发生旋转变化。可以将其放在某个View的左下角。
Achieve progress bar pie (Pie Progress), click on the pie progress bar, the progress bar inside the pin (Pin) rotation will change. It can be placed in the lower left corner of a View. (2014-12-07, Java, 122KB, 下载2次)

http://www.pudn.com/Download/item/id/2669285.html

[单片机开发] NFCDemo

NFC DEMO 读卡器功能读卡器功能读卡器读卡器功能功能
NFC DEMO (2014-06-05, Java, 87KB, 下载6次)

http://www.pudn.com/Download/item/id/2560190.html

[多媒体编程] bodycollision

(Body碰撞监听),碰撞筛选器比监听器更加的具有扩展性,可以在筛选器中实现监听器的功能;但是由于自由度太大,一般不推荐使用final float RATE = 30 // 屏幕到现实世界的比例 30px:1m   World world // 声明一个物理世界对象   AABB aabb // 声明一个物理世界的范围对象   Vec2 gravity // 声明一个重力向量对象   float timeStep = 1f / 60f // 物理世界模拟的的频率   int iterations = 10 // 迭代值,迭代越大模拟越精确,但性能越低   // --->>给第一个Body赋予力   Body body1, body2   Shape 里的 m_isSensor 属性表示发生碰撞但是不产生碰撞效果   public void result(ContactResult arg0) {   // 发生碰撞(有新的接触点被监听到)会调用此函数   // 持续碰撞时也会调用此函数   }
(Body Collision listening), collision filters more scalable than the listener, the listener function can be achieved in the filter However, due to the degree of freedom too, is generally not recommended final float RATE = 30 //screen to the proportion of the real world 30px: 1m World world //declare a physical world objects AABB aabb //declare a range of physical world objects Vec2 gravity //declare a gravity vector objects float timeStep = 1f/60f //Physics world analog frequency int iterations = 10 //iteration values, the greater the iterative simulation more accurate, but the lower the performance//--- > > gives force to the first Body Body body1, body2 Shape Properties in the m_isSensor said the collision but no collision effects public void result (ContactResult arg0) {//collision (new points of contact are listening to) will call this function// when the collision will continue to call this function} (2014-04-16, Java, 337KB, 下载2次)

http://www.pudn.com/Download/item/id/2512359.html

[多媒体编程] music

安卓音乐播放器安卓音乐播放器安卓音乐播放器安卓音乐播放器安卓音乐播放器安卓音乐播放器安卓音乐播放器
music player (2014-01-01, Java, 4KB, 下载11次)

http://www.pudn.com/Download/item/id/2441400.html

[android开发] Calculator

android计算器,科学计算器,程序员计算器
android calculator, scientific calculator, programmers calculator (2013-04-21, Java, 191KB, 下载29次)

http://www.pudn.com/Download/item/id/2210340.html

[Java编程] ObServer

Java观察者模式范例. Observer模式是行为模式之一,它的作用是当一个对象的状态发生变化时,能够自动通知其他关联对象,自动刷新对象状态。 Observer模式提供给关联对象一种同步通信的 手段,使某个对象与依赖它的其他对象之间保持状态同步。
Design pattern of observer pattern in Java (2011-06-07, Java, 7KB, 下载9次)

http://www.pudn.com/Download/item/id/1561186.html

[Java编程] java3

Java计算器Java计算器Java计算器Java计算器Java计算器Java计算器
Java Calculator Java Calculator Java Calculator Java Calculator Java Calculator Java Calculator (2011-03-12, Java, 3KB, 下载6次)

http://www.pudn.com/Download/item/id/1452694.html

[Java编程] NotePad

文本编辑器文本编辑器文本编辑器文本编辑器文本编辑器文本编辑器
Text editor text editor text editor text editor text editor text editor (2011-03-12, Java, 41KB, 下载3次)

http://www.pudn.com/Download/item/id/1452680.html

[Java编程] Automail

自动发生报表邮件的程序,自动到FTP server 读取XML文件信息,按照格式,生成报表,然后自动发送邮件。
send report by mail automatically, the program will read the xml file information from the FTP server, generate the report according to the format, then sent the mail to the corresponding mail list. (2010-09-27, Java, 7993KB, 下载5次)

http://www.pudn.com/Download/item/id/1305583.html

[Java编程] javaServer

JavaServer服务器程序JavaServer服务器程序JavaServer服务器程序JavaServer服务器程序
JavaServer服务器程序 (2009-06-12, Java, 3KB, 下载4次)

http://www.pudn.com/Download/item/id/804820.html

[Java编程] 305314118

JAVA词法分析器JAVA词法分析器JAVA词法分析器JAVA词法分析器
JAVA词法分析器 JAVA词法分析器 JAVA词法分析器JAVA词法分析器JAVA词法分析器 (2009-03-24, Java, 3KB, 下载14次)

http://www.pudn.com/Download/item/id/685905.html

[Windows编程] drawcircle

if(e.getActionCommand()=="参数法画圆"){ p=11 } } //actionPerformed //实现接口WindowListener的所有方法,用于处理发生在窗口上的事件 public void windowClosing(WindowEvent e)
if (e.getActionCommand ()== drawcircle parameter method ) (p = 11))// actionPerformed// Implement Interface WindowListener all the methods used to deal with the occurrence of events in the window public void windowClosing (WindowEvent e) (2007-12-13, Java, 2KB, 下载3次)

http://www.pudn.com/Download/item/id/375162.html

[] Student_Manager

从数据库中去出数据的代码啊而后呢安慰谈话晚上 独生女不但那时如同感虽然那时如果能够发生突然那时认得会议
from the database to a data code ah then? Comfort conversation at that time not only as the only girl Though flu if we can then recognize sudden meeting (2006-01-09, Java, 4KB, 下载3次)

http://www.pudn.com/Download/item/id/139755.html

[Java编程] 计算器样板(简单的计算器)

计算器样板(简单的计算器),使用JAVA语言实现,十分好的示例
calculator model (simple calculators), the use of Java language, a very good example (2005-12-23, Java, 19KB, 下载13次)

http://www.pudn.com/Download/item/id/134783.html

[Java编程] 计算器代码

计算器的源代码,比较简单!
calculator source code, relatively simple! (2004-12-20, Java, 10KB, 下载22次)

http://www.pudn.com/Download/item/id/1103527702203945.html

[Java编程] java弹出式计算器

java弹出式计算器(改进版)
java pop-up calculator (improved version) (2004-10-28, Java, 5KB, 下载26次)

http://www.pudn.com/Download/item/id/1098957170758490.html
总计:52917