-
DoWhile
The First Make Looping
- 2012-11-10 01:12:33下载
- 积分:1
-
IO流文件复制
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.PrintStream;
public class FileStreamDemo {
public static void main(String[] args) {
writeDate();
}
private static void copy() {
byte[] b= new byte[1000];
FileInputStream fs=null;
FileOutputStream fo=null;
try {
fs = new FileInputStream("e:1.qsv");
fo = new FileOutputStream("e:11.qsv");
while((fs.read(b))!=-1){
fo.write(b);
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}finally{
try {
fo.close();
fs.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
- 2023-05-13 11:05:02下载
- 积分:1
-
JAVA4.5pro完整源码放了
说明: java平台的问道手游完整源码可编译,会搞Java的拿去研究,可以开服(Java platform asked mobile game complete source code can be compiled, will do java to study)
- 2020-09-18 16:17:53下载
- 积分:1
-
JAVA help users better general use JAVA.
帮助广大的JAVA用户更好的使用JAVA。-JAVA help users better general use JAVA.
- 2022-02-13 09:17:57下载
- 积分:1
-
实现校园卡的注册,消费,修改密码,等基本功能
实现校园卡的注册,消费,修改密码,等基本功能 -Campus Card registration, consumption, change passwords, and other basic functions
- 2022-06-16 04:14:40下载
- 积分:1
-
page-demo
说明: javaweb 分页
采用标签库实现美化分页效果
自带插件(JavaWeb paging
Using Label Library to Beautify Paging Effect
Self-contained plug-in)
- 2020-06-23 15:40:02下载
- 积分:1
-
数独游戏 recursivo
这包含以下内容: 方法 recursives 是程序来解决更多的优选 asudoku 8 x 8,我只用一个类,并且包含一个视觉框架吗
- 2022-03-14 02:19:00下载
- 积分:1
-
upd900mib.tar
hp mib用于snmp扫描硬件状态信息(cpu,内存。风扇,电源等信息)(hp mib)
- 2014-02-20 19:30:49下载
- 积分:1
-
sqljdbc
JDBC连接数据库的java包,需要的人可以下(JDBC database connection java package requires persons can)
- 2014-06-08 17:40:08下载
- 积分:1
-
AutoRingProjectxx_zz_src
I created this app to simulate the ring behavior of the Motorola RAZR which would switch to loud when charging and return to vibrate-only when disconnected (no manual adjustment needed). This app also allows the reverse scenario (silent when connected otherwise ring).
This tutorial assumes you already have the Eclipse environment up and running. If you are new to Eclipse and Android development, I recommend going through the temperature converter tutorial which can be found here.
- 2012-06-20 10:51:20下载
- 积分:1