E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
filechannel
利用java内存映射文件机制实现CRC循环冗余校验
import java.nio.MappedByteBuffer; import java.nio.channels.
FileChannel
; import java.util.zip.CRC32
caizhongda
·
2010-05-08 12:00
java
c
exception
String
buffer
import
java编程思想 IO9 文件操作源码
java.io.FileOutputStream; import java.io.IOException; import java.nio.ByteBuffer; import java.nio.channels.
FileChannel
imaginecup
·
2010-05-06 22:00
java
编程
C++
c
C#
java编程思想 IO8 文件操作源码
通道与缓冲器的探究 package com.dirlist; import java.nio.ByteBuffer; import java.nio.channels.
FileChannel
;
imaginecup
·
2010-05-06 20:00
java
编程
ByteBufferTest
.*; import java.nio.channels.
FileChannel
; import java.nio.charset.Charset; public class BufferTest
liao_19840826
·
2010-04-07 00:00
ByteBuffer
java学习——NIO篇2
其中对文件的传递采用的是nio中的
FileChannel
。很好用的一个东西。 &nb
yznxing
·
2010-03-31 12:00
java
多线程
thread
.net
socket
NIO 文件随机存取问题
FileChannel
fc = new RandomAccessFile(new File("temp.tmp"), "rw").getChannel();
SSailYang
·
2010-03-07 20:00
nio
md5加盐验证用户密码的小例子
importjava.io.FileInputStream;importjava.io.FileOutputStream;importjava.nio.ByteBuffer;importjava.nio.channels.
FileChannel
疯狂
·
2010-02-09 13:00
Java IO流操作方法。。
*;importjava.nio.channels.
FileChannel
;importjava.nio.charset.Charset;/***压缩文件类*@authorwinlin*/publicclasszipFile
kennydkkk
·
2010-02-02 10:00
java
io
string
import
exception
class
创建指定大小的文件的代码
public static void main(String[] args) {// TODO Auto-generated method stubMappedByteBuffer mbb;
FileChannel
helloyesyes
·
2009-12-19 15:00
文件
复制文件
static void copyFile(File readFile,File writeFile) { try {
FileChannel
piziyan
·
2009-11-26 09:00
java
java读取大文件(上G级的)
import java.io.RandomAccessFile; import java.nio.MappedByteBuffer; import java.nio.channels.
FileChannel
Stanlyy
·
2009-11-21 14:00
java
JAVA文件操作
importjava.io.FileNotFoundException;importjava.io.FileOutputStream;importjava.io.IOException;importjava.nio.channels.
FileChannel
chenzenan
·
2009-11-18 11:00
NIO类库关系图解
ByteBuffer.wrap()方法把这个byte数组wrap成buffer,再用getChannel()在FileOutputStream上打开一个channel,然后才能用ByteBuffer把数据写入
FileChannel
junJZ_2008
·
2009-11-12 21:00
nio
NIO类库关系图解
ByteBuffer.wrap()方法把这个byte数组wrap成buffer,再用getChannel()在FileOutputStream上打开一个channel,然后才能用ByteBuffer把数据写入
FileChannel
junJZ_2008
·
2009-11-12 21:00
nio
NIO类库关系图解
ByteBuffer.wrap()方法把这个byte数组wrap成buffer,再用getChannel()在FileOutputStream上打开一个channel,然后才能用ByteBuffer把数据写入
FileChannel
junJZ_2008
·
2009-11-12 21:00
nio
java.nio.channels.
FileChannel
(文件通道)
旧I/O类库中有三被改进了,可以产生
FileChannel
,它们是:FileInputStream、FileOutputStream 以及可读可写的RandomAccessFile 。
junJZ_2008
·
2009-11-11 23:00
java
java.nio.channels.
FileChannel
(文件通道)
旧I/O类库中有三被改进了,可以产生
FileChannel
,它们是:FileInputStream、FileOutputStream 以及可读可写的RandomAccessFile 。
junJZ_2008
·
2009-11-11 23:00
java
使用
FileChannel
复制文件
方法1: public voidcopyFile(Filesrc,Filedest){ FileChannelin=null; FileChannelout=null; try{ FileInputStreamfis=newFileInputStream(src); FileOutputStreamfos=newFileOutputStream(dest);
onlymilan
·
2009-11-02 12:00
exception
File
null
buffer
IO与NIO读写文本文件的测试
对NIO有过了解的朋友都知道:NIO对文件操作是通过FileInputStream、FileOutputStream或者RandomAccessFile对象的getChannel()方法获得一个
FileChannel
CapsLk
·
2009-10-13 17:00
虚拟机
中间件
jni
FileChannel
锁定文件
当前虚拟机内其它线程,包括当前操作系统(起码win XP肯定是这样儿的),都无法访问指定的文件 D:\\SOCKET\\server_fa\\test.txt package com.wlh.
filechannel
wlh269
·
2009-09-22 10:00
java
thread
c
socket
XP
Java6学习笔记70——
FileChannel
的学习
定义了各种通道,这些通道表示到能够执行 I/O 操作的实体(如文件 和套接字)的连接;定义了用于多路复用的、非阻塞 I/O 操作的选择器。 写文件 import java.io.FileOutputStream; import java.io.IOException; import java.nio.ByteBuffer; import java.nio.CharBuffer; import
xiaoer_1982
·
2009-07-31 14:00
java
对java.nio.ByteBuffer的粗浅理解
. // // 此段代码功能为从 t.txt 里复制所有数据到 out_j.txt: //
FileChannel
fcin = new Fi
cloud21
·
2009-07-27 13:00
java
设计模式
C++
c
C#
极大提高java I/O效率的方法
.*; public static void copy(File source, File dest) throws IOException {
FileChannel
in = null, out
xx_liuhui
·
2009-05-27 17:00
利用
FileChannel
复制文件 Copy one File to Another【三种方法】
java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.nio.channels.
FileChannel
huqianhao
·
2009-05-22 13:00
复制
文件
FileChannel
利用
文件的copy和重命名
File src,File dest) throws Exception{ try { // Create channel on the source
FileChannel
iamcrzay
·
2009-05-05 09:00
copy
JAVA软件工程师考证模拟试题3
(2)5、
FileChannel
类位于java.io包中。(2)6、 接口是的成员
icejadelove
·
2009-04-01 20:00
java
C++
c
servlet
C#
java中对文件计算MD5
java.io.FileInputStream; import java.io.IOException; import java.nio.MappedByteBuffer; import java.nio.channels.
FileChannel
zhouzaibao
·
2009-03-05 14:00
java
C++
c
Security
F#
慎用 MappedByteBuffer!
FileInputStreamin=newFileInputStream(file);FileChannelch=in.getChannel();MappedByteBufferbyteBuffer=ch.map(
FileChannel
.MapMode.READ_ONLY
yipsilon
·
2008-12-21 03:00
JVM
SUN
Cache
Linux
设计模式
Java适用于大文件的MD5工具类
java.io.FileInputStream; import java.io.IOException; import java.nio.MappedByteBuffer; import java.nio.channels.
FileChannel
allenofchina
·
2008-12-07 09:00
java
apache
游戏
c
Security
JAVA文件拷贝(NIO实现)
www.exampledepot.com/egs/java.nio/File2File.html try { // Create channel on the source
FileChannel
moxuansheng
·
2008-11-28 11:00
合并文件
java.io.FileOutputStream; import java.io.RandomAccessFile; import java.nio.MappedByteBuffer; import java.nio.channels.
FileChannel
biekwo
·
2008-11-27 14:00
F#
文件流中的文件锁
synchronized方法也可以达到封锁的效果,但很多情况都会增强了程序的复杂性;现在介绍一种简单的类----java.nio.channels.FileLock和java.nio.channels.
FileChannel
ccp330
·
2008-11-26 14:04
编程
职场
文件流
休闲
文件锁
FileChannel
类的简单用法
阅读更多清单一:importjava.io.*;importjava.nio.*;importjava.nio.channels.*;publicclassGetChannel{privatestaticfinalintBSIZE=1024;publicstaticvoidmain(String[]args)throwsIOException{FileChannelfc=newFileOutput
xzknet
·
2008-10-31 09:00
Java
FileChannel
类的简单用法
清单一: importjava.io.*; importjava.nio.*; importjava.nio.channels.*; publicclassGetChannel { privatestaticfinalintBSIZE=1024; publicstaticvoidmain(String[]args)throwsIOExcept
txf2004
·
2008-10-31 09:00
java
FileChannel
类的简单用法
清单一: import java.io.*; import java.nio.*; import java.nio.channels.*; public class GetChannel { private static final int BSIZE = 1
xzknet
·
2008-10-31 09:00
java
面试知识点--NIO
java.io.FileOutputStream;import java.io.RandomAccessFile;import java.nio.ByteBuffer;import java.nio.channels.
FileChannel
d8111
·
2008-10-16 23:00
面试
api
String
iterator
buffer
byte
使用
FileChannel
复制文件
文件通道定义了两个方法,可以进行直接的文件传输:inttransferTo(intposition,longcount,WritableByteChanneldst);这个函数是把文件从position位置开始向dst通道传送count个字节。inttransferFrom(ReadableByteChannelsrc,longposition,longcount);将count个字节从通道src
china8848
·
2008-09-24 17:00
DST
java快速生成大文件的MD5算法[MD5Util.java]
importjava.io.FileInputStream;importjava.io.IOException;importjava.nio.MappedByteBuffer;importjava.nio.channels.
FileChannel
e_wsq
·
2008-09-04 10:00
java
算法
String
File
byte
BT
java快速生成大文件的MD5算法[MD5Util.java]
java.io.FileInputStream; import java.io.IOException; import java.nio.MappedByteBuffer; import java.nio.channels.
FileChannel
linuxstuding
·
2008-09-04 10:00
java
一个关于NIO的小程序
java.io.FileOutputStream; import java.io.IOException; import java.nio.ByteBuffer; import java.nio.channels.
FileChannel
zhoulei984623
·
2008-08-05 16:00
java
一个关于NIO的小程序
java.io.FileOutputStream; import java.io.IOException; import java.nio.ByteBuffer; import java.nio.channels.
FileChannel
zhoulei984623
·
2008-08-05 16:00
java
一个关于NIO的小程序
java.io.FileOutputStream; import java.io.IOException; import java.nio.ByteBuffer; import java.nio.channels.
FileChannel
zhoulei984623
·
2008-08-05 16:00
java
如何提高java I/O的执行效率,MappedByteBuffer
.*; public static void copy(File source, File dest) throws IOException {
FileChannel
in
hitqiang
·
2008-05-27 19:00
java
设计模式
多线程
socket
sun
新I/O 略知
在旧I/O类库中有3个类可以产生
FileChannel
(FileInputStream,FileOutputStream,RandomAccessFile)。
wangyun
·
2008-04-13 21:00
java
Java nio(三)
一、读文件: 前面我们介绍了通过获得
FileChannel
来写文件,现在我们再看看读操作。 其实读操作和写操作基本是对应的。
fuliang
·
2008-03-02 15:00
java
虚拟机
socket
Java nio(三)
一、读文件: 前面我们介绍了通过获得
FileChannel
来写文件,现在我们再看看读操作。 其实读操作和写操作基本是对应的。
fuliang
·
2008-03-02 15:00
java
虚拟机
socket
java流
.*; import java.nio.channels.
FileChannel
; import java.nio.charset.Charset; /** * 压缩文件类 * @
war_martin
·
2007-11-29 14:00
java
使用NIO复制文件
importjava.io.FileOutputStream;importjava.io.IOException;importjava.nio.ByteBuffer;importjava.nio.channels.
FileChannel
flyforlove
·
2007-05-15 16:00
java
备份:nio文件读写
importjava.io.IOException;importjava.nio.ByteBuffer;importjava.nio.MappedByteBuffer;importjava.nio.channels.
FileChannel
ihuashao
·
2007-04-16 15:00
java
thread
通过文件锁定达到java程序单进程
nbsp; RandomAccessFile f = null;
FileChannel
jackle_liu
·
2007-02-26 11:00
java
F#
上一页
11
12
13
14
15
16
17
18
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他