代码搜索:ByteBuffer
找到约 1,360 项符合「ByteBuffer」的源代码
代码结果 1,360
www.eeworm.com/read/405411/11463194
java simpleprotocoldecoder.java
/*
* Copyright 2004 WIT-Software, Lda.
* - web: http://www.wit-software.com
* - email: info@wit-software.com
*
* All rights reserved. Relased under terms of the
* Creative Commons' Attr
www.eeworm.com/read/405411/11463198
java plainchannel.java
/*
* Copyright 2004 WIT-Software, Lda.
* - web: http://www.wit-software.com
* - email: info@wit-software.com
*
* All rights reserved. Relased under terms of the
* Creative Commons' Attr
www.eeworm.com/read/405411/11463200
java channel.java
/*
* Copyright 2004 WIT-Software, Lda.
* - web: http://www.wit-software.com
* - email: info@wit-software.com
*
* All rights reserved. Relased under terms of the
* Creative Commons' Attr
www.eeworm.com/read/401625/11553341
java filechannelexample5.java
import java.io.*;
import java.nio.*;
import java.nio.channels.*;
public class FileChannelExample5
{
public static void main(String args[]) throws Exception
{
FileInputStream fin = new Fil
www.eeworm.com/read/401625/11553346
java filechannelexample1.java
import java.io.*;
import java.nio.*;
import java.nio.channels.*;
public class FileChannelExample1
{
public static void main(String args[]) throws Exception
{
FileInputStream fin = new Fil
www.eeworm.com/read/401604/11554751
c jpegdecoder.c
///////////////////////////////////////////////////////////////////////////////
//
// JPEGDecoder.c
//
// DESCRIPTION
// Top level interfaces for JPEG decoder.
//
//
/////////////////
www.eeworm.com/read/157231/11726504
java filedes.java
//版权所有--董清潭
package des;
import java.io.*;
import java.nio.*;
import java.nio.channels.FileChannel;
public class FileDES{
private static final boolean enc=true; //加密
private static fin
www.eeworm.com/read/157231/11726526
java trying1.java
//版权所有--董清潭
package des;
import java.io.*;
import java.nio.*;
import java.nio.channels.FileChannel;
public class trying1{
private String srcFileName;
private String destFileName;
privat
www.eeworm.com/read/344239/11894508
java intbufferdemo.java
//: io/IntBufferDemo.java
// Manipulating ints in a ByteBuffer with an IntBuffer
import java.nio.*;
public class IntBufferDemo {
private static final int BSIZE = 1024;
public static void ma
www.eeworm.com/read/344239/11894532
java buffertotext.java
//: io/BufferToText.java
// Converting text to and from ByteBuffers
import java.nio.*;
import java.nio.channels.*;
import java.nio.charset.*;
import java.io.*;
public class BufferToText {
p