Method readLong()
Return type: long
Member of:
java.io.DataInputStream
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
return new Long(readLong());
2
return new Double(Double.longBitsToDouble(readLong()));
3
this(file.readLong());
4
return (in.readLong() == code);
5
long index= in.readLong();
6
setValue(new Long(cpStream.readLong()));
7
for (long docs = dis.readLong(); docs >= 0; docs = dis.readLong()) {
8
list.add(in.readLong());
9
long fill1 = f.readLong();
10
acceptEntropy(seedFile, dis.readLong(), 64);
11
long ll = in2.readLong();
12
long magic = distream.readLong();
13
offset=inputStream.readLong();
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.