614615616617618619620621622623624625626627628
return fws; } public StreamImpl openReadWriteImpl() throws IOException { VfsStream os; os = new VfsStream(new FileInputStream(getFile()), new FileOutputStream(getFile()), this); os.setNewline(NEWLINE); return os; }
195196197198199200201202203204205
} StreamImpl out; try { out = new VfsStream(null, response.getOutputStream()); } catch (IllegalStateException e) { WriterStreamImpl writer = new WriterStreamImpl(); writer.setWriter(response.getWriter());