代码搜索:ByteBuffer
找到约 1,360 项符合「ByteBuffer」的源代码
代码结果 1,360
www.eeworm.com/read/247348/12663947
java sgipabstractstruct.java
package com.zzxy.shortmessage.SGIP;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
public abstract class SGIPAbstractStruct {
public static final int STRUCT_MAX_SIZE = 1024
www.eeworm.com/read/247348/12663954
java submit.java
package com.zzxy.shortmessage.SGIP;
import java.nio.ByteBuffer;
public class Submit extends SGIPAbstractStruct{
public String SPNumber; //21B SP的接入号码
public String ChargeN
www.eeworm.com/read/140894/13053811
java getdata.java
//: c12:GetData.java
// Getting different representations from a ByteBuffer
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
i
www.eeworm.com/read/140894/13053837
java getchannel.java
//: c12:GetChannel.java
// Getting channels from streams
// {Clean: data.txt}
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
www.eeworm.com/read/138758/13217054
java getdata.java
//: c12:GetData.java
// Getting different representations from a ByteBuffer
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
i
www.eeworm.com/read/138758/13217102
java getchannel.java
//: c12:GetChannel.java
// Getting channels from streams
// {Clean: data.txt}
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
www.eeworm.com/read/325023/13230234
java getdata.java
//: io/GetData.java
// Getting different representations from a ByteBuffer
import java.nio.*;
import static net.mindview.util.Print.*;
public class GetData {
private static final int BSIZE =
www.eeworm.com/read/325023/13230279
java getchannel.java
//: io/GetChannel.java
// Getting channels from streams
import java.nio.*;
import java.nio.channels.*;
import java.io.*;
public class GetChannel {
private static final int BSIZE = 1024;
p
www.eeworm.com/read/322022/13390922
java timeservice.java
package com.ronsoft.books.nio.channels;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import java.nio.channels.DatagramChannel;
import java.net.InetSocketAddress;
import java.util.Date;
imp
www.eeworm.com/read/322022/13390944
java mapfile.java
package com.ronsoft.books.nio.channels;
import java.nio.ByteBuffer;
import java.nio.MappedByteBuffer;
import java.nio.channels.FileChannel;
import java.io.File;
import java.io.RandomAccessFile;
/**