mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-22 16:14:10 -08:00
parent
6ef841a560
commit
ddf194af31
|
@ -63,6 +63,8 @@ public class InMemoryVirtualFile extends AbstractInMemoryVirtualFile {
|
||||||
{
|
{
|
||||||
if (append) {
|
if (append) {
|
||||||
pos = size;
|
pos = size;
|
||||||
|
} else if (writable) {
|
||||||
|
size = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -283,6 +283,26 @@ public class FileOutputStreamTest {
|
||||||
fos.close();
|
fos.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void repeatedWrite() throws IOException {
|
||||||
|
f = new File(System.getProperty("user.home"), "test.txt");
|
||||||
|
fos = new FileOutputStream(f);
|
||||||
|
fos.write("A very long test string for purposes of testing.".getBytes());
|
||||||
|
fos.close();
|
||||||
|
|
||||||
|
fos = new FileOutputStream(f);
|
||||||
|
fos.write("A short string.".getBytes());
|
||||||
|
fos.close();
|
||||||
|
|
||||||
|
int length = (int) f.length();
|
||||||
|
byte[] bytes = new byte[length];
|
||||||
|
fis = new FileInputStream(f);
|
||||||
|
fis.read(bytes, 0, length);
|
||||||
|
String str = new String(bytes);
|
||||||
|
|
||||||
|
assertEquals("A short string.", str);
|
||||||
|
}
|
||||||
|
|
||||||
@After
|
@After
|
||||||
public void tearDown() throws Exception {
|
public void tearDown() throws Exception {
|
||||||
if (f != null) {
|
if (f != null) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user