-
java持久化API
Java Persistent API - JPA JEE 5-Java Persistent API- JPA JEE 5
- 2022-01-27 20:31:12下载
- 积分:1
-
CMPP mobile gateway, JAVA another realize, very complete code.
移动CMPP的网关,JAVA又一实现,非常完整的代码.-CMPP mobile gateway, JAVA another realize, very complete code.
- 2022-04-30 04:02:15下载
- 积分:1
-
印度高手Struts and Hibernate教程,用MyEclipse开发.书和源码In this tutorial we will show how th...
印度高手Struts and Hibernate教程,用MyEclipse开发.书和源码In this tutorial we will show how the Web Framework Struts and the Database Persistence Solution
Hibernate can be used together. Though we explain some basic, you should try the basic tutorials
for each technology first when you are a beginner.
- 2022-03-20 23:48:07下载
- 积分:1
-
jstl_c
JSTL是一个不断完善的开放源代码的JSP标签库,是由apache的jakarta小组来维护的。JSTL只能运行在支持JSP1.2和Servlet2.3规范的容器上,如tomcat 4.x。但是在即将推出的JSP 2.0中是作为标准支持的。(JSTL is a continuous improvement of the open-source JSP tag library, are from the jakarta group apache to maintain. JSTL can only run in support of JSP1.2 and norms Servlet2.3 containers, such as tomcat 4.x. However, in the upcoming JSP 2.0 is supported as a standard.)
- 2009-02-23 17:34:14下载
- 积分:1
-
cv
this is a file which permit to understand the informatio system very well
- 2014-01-10 23:15:50下载
- 积分:1
-
模拟播放SRC文件的程序
模拟播放SRC文件的程序-analog broadcast SRC documentation procedures
- 2022-02-01 06:27:39下载
- 积分:1
-
进制转换代码
资源描述在有些的开发中需要事项数据格式转换
- 2023-01-29 03:30:04下载
- 积分:1
-
java+opencv实现人脸识别源码
java+opencv实现人脸识别源码 可以检测单人 和多人,,,java源代码
- 2022-06-25 23:10:33下载
- 积分:1
-
同时采用中点算法画麻木使用java…
利用Java采用中点Brasenham算法同时绘制多个圆。-The use of Java at the same time using the midpoint algorithm for drawing a number of Brasenham round.
- 2022-05-23 19:21:57下载
- 积分:1
-
JAVA贪吃蛇
import java.awt.*;
import javax.swing.*;
@SuppressWarnings("serial")
public class MainClass extends JFrame {
ControlSnake control;
Toolkit kit;
Dimension dimen;
public static void main(String[] args) {
new MainClass("my snake");
}
public MainClass(String s) {
super(s);
control = new ControlSnake();
control.setFocusable(true);
kit = Toolkit.getDefaultToolkit();
dimen = kit.getScreenSize();
add(control);
setLayout(new BorderLayout());
setLocation(dimen.width / 3, dimen.height / 3);// dimen.width/3,dimen.height/3
setSize(FWIDTH, FHEIGHT);
setDefaultCloseOperation(JFrame.EXIT_ON_CLO
- 2022-04-17 23:49:25下载
- 积分:1