Rev 3408 |
Blame |
Compare with Previous |
Last modification |
View Log
| RSS feed
/*
* Copyright (C) 2007 Steve Ratcliffe
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*
* Author: Steve Ratcliffe
* Create date: 23-Sep-2007
*/
package uk.me.parabola.io;
import java.io.IOException;
import java.io.OutputStream;
import java.io.FilterOutputStream;
/**
* An output stream that has methods for writing strings and little endian
* integers. Its a bit like DataOutput, but for little endian.
*
* @author Steve Ratcliffe
*/
public class StructuredOutputStream
extends FilterOutputStream {
public StructuredOutputStream
(OutputStream out
) {
super(out
);
}
public void write
(int b
) throws IOException {
out.
write(b
);
}
public void write2
(int b
) throws IOException {
out.
write(b
);
out.
write(b
>> 8);
}
public void write3
(int i
) throws IOException {
out.
write(i
);
out.
write(i
>> 8);
out.
write(i
>> 16);
}
public void write4
(int b
) throws IOException {
out.
write(b
);
out.
write(b
>> 8);
out.
write(b
>> 16);
out.
write(b
>> 24);
}
/**
* Writes a string including a terminating null byte.
*
* For each character in the string the low-order byte is written.
*
* @param s The string to write.
* @throws IOException If the write fails.
*/
public void writeString
(String s
) throws IOException {
for (char c : s.
toCharArray()) {
out.
write((byte) c
);
}
out.
write('\0');
}
}